chrome-ai-bridge 2.3.0 → 2.3.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -0
- package/package.json +6 -2
package/README.md
CHANGED
|
@@ -263,6 +263,7 @@ npm run cdp:gemini
|
|
|
263
263
|
| [Technical Spec](docs/SPEC.md) | Detailed architecture and implementation |
|
|
264
264
|
| [Setup Guide](docs/user/setup.md) | Detailed MCP configuration |
|
|
265
265
|
| [Troubleshooting](docs/user/troubleshooting.md) | Problem solving |
|
|
266
|
+
| [CI Policy](docs/ci-policy.md) | Required checks and browser E2E lane policy |
|
|
266
267
|
| [Technical Spec - Architecture](docs/SPEC.md#1-architecture-overview) | Extension architecture |
|
|
267
268
|
|
|
268
269
|
---
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "chrome-ai-bridge",
|
|
3
|
-
"version": "2.3.
|
|
3
|
+
"version": "2.3.1",
|
|
4
4
|
"description": "MCP server bridging Chrome extension and AI assistants (ChatGPT, Gemini). Extension-only mode - no Puppeteer.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": "./scripts/cli.mjs",
|
|
@@ -35,7 +35,11 @@
|
|
|
35
35
|
"test:mcp:chatgpt": "npm run build && node scripts/test-mcp.mjs --chatgpt",
|
|
36
36
|
"test:mcp:gemini": "npm run build && node scripts/test-mcp.mjs --gemini",
|
|
37
37
|
"test:mcp:parallel": "npm run build && node scripts/test-mcp.mjs --parallel",
|
|
38
|
-
"test:network": "npm run build && node scripts/test-network-intercept.mjs"
|
|
38
|
+
"test:network": "npm run build && node scripts/test-network-intercept.mjs",
|
|
39
|
+
"test": "npm run build:noext && node scripts/test-mcp.mjs --tools-only",
|
|
40
|
+
"docs": "npm run build:noext && node --experimental-strip-types scripts/generate-docs.ts",
|
|
41
|
+
"generate-docs": "npm run docs",
|
|
42
|
+
"sync-server-json-version": "node --experimental-strip-types scripts/sync-server-json-version.ts"
|
|
39
43
|
},
|
|
40
44
|
"files": [
|
|
41
45
|
"build/src",
|