Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions integrations/chrome-capture-extension/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -230,5 +230,6 @@ If you're weighing whether to add more MCP-exposing extensions on top, see the [

## Changelog

- **0.6.1** — Bulk sync captures now send `skip_classification: true` to the ingest gateway, skipping the per-turn LLM classification pass during backfills (manual captures still classify). Gateways that don't support the flag ignore it.
- **0.5.1** — Added the branded icon set (16/32/48/128 PNGs); the toolbar button now shows the Open Brain mark instead of Chrome's default puzzle-piece glyph.
- **0.5.0** — Gemini bulk history sync, host-permission hardening, error surfacing, fingerprint dedup, retry caps, and race fixes.
Original file line number Diff line number Diff line change
Expand Up @@ -449,6 +449,11 @@ async function processCaptureRequest(message) {
source_label: capture.sourceLabel,
source_type: capture.sourceType,
auto_execute: capture.autoExecute,
// Bulk sync captures skip the gateway's per-turn LLM classification
// pass — a 400-turn backfill would otherwise fire 400 classification
// calls. Manual captures (user clicked Capture on one exchange) still
// classify. Gateways that don't support the flag simply ignore it.
skip_classification: capture.captureMode === 'sync',
source_metadata: {
...capture.sourceMetadata,
extension_capture_mode: capture.captureMode,
Expand Down
2 changes: 1 addition & 1 deletion integrations/chrome-capture-extension/manifest.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"manifest_version": 3,
"name": "Open Brain Capture",
"version": "0.6.0",
"version": "0.6.1",
"description": "Capture AI conversations from Claude, ChatGPT, and Gemini into your Open Brain via the REST API gateway.",
"icons": {
"16": "icons/icon16.png",
Expand Down
4 changes: 2 additions & 2 deletions integrations/chrome-capture-extension/metadata.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"name": "Alan Shurafa",
"github": "alanshurafa"
},
"version": "1.1.1",
"version": "1.1.2",
"requires": {
"open_brain": true,
"services": ["REST API gateway (integrations/open-brain-rest)"],
Expand All @@ -16,5 +16,5 @@
"difficulty": "intermediate",
"estimated_time": "20 minutes",
"created": "2026-04-17",
"updated": "2026-06-14"
"updated": "2026-07-14"
}
Loading