@jobshimo/browser-link 0.5.3 → 0.7.5
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.
|
@@ -1,9 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"manifest_version": 3,
|
|
3
3
|
"name": "browser-link",
|
|
4
|
-
"version": "0.
|
|
4
|
+
"version": "0.7.5",
|
|
5
5
|
"description": "Bridge between Chrome and an MCP client (Claude Code, OpenCode, GitHub Copilot CLI, …). Per-tab manual activation.",
|
|
6
|
-
"permissions": [
|
|
6
|
+
"permissions": [
|
|
7
|
+
"debugger",
|
|
8
|
+
"activeTab",
|
|
9
|
+
"storage",
|
|
10
|
+
"tabs"
|
|
11
|
+
],
|
|
7
12
|
"host_permissions": [],
|
|
8
13
|
"icons": {
|
|
9
14
|
"16": "icons/icon-16.png",
|
|
@@ -31,8 +31,7 @@
|
|
|
31
31
|
body {
|
|
32
32
|
margin: 0;
|
|
33
33
|
padding: 0;
|
|
34
|
-
font-family:
|
|
35
|
-
-apple-system, BlinkMacSystemFont, 'Segoe UI', Inter, system-ui, sans-serif;
|
|
34
|
+
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Inter, system-ui, sans-serif;
|
|
36
35
|
font-size: 13px;
|
|
37
36
|
color: var(--text);
|
|
38
37
|
background: var(--bg);
|
|
@@ -43,8 +42,7 @@
|
|
|
43
42
|
width: 320px;
|
|
44
43
|
background:
|
|
45
44
|
radial-gradient(circle at top right, rgba(59, 130, 246, 0.08), transparent 55%),
|
|
46
|
-
radial-gradient(circle at top left, rgba(29, 78, 216, 0.05), transparent 50%),
|
|
47
|
-
var(--bg);
|
|
45
|
+
radial-gradient(circle at top left, rgba(29, 78, 216, 0.05), transparent 50%), var(--bg);
|
|
48
46
|
}
|
|
49
47
|
|
|
50
48
|
.shell {
|
|
@@ -247,7 +245,14 @@
|
|
|
247
245
|
<div class="shell">
|
|
248
246
|
<header>
|
|
249
247
|
<div class="mark" aria-hidden="true">
|
|
250
|
-
<svg
|
|
248
|
+
<svg
|
|
249
|
+
viewBox="0 0 128 128"
|
|
250
|
+
fill="none"
|
|
251
|
+
stroke="currentColor"
|
|
252
|
+
stroke-width="11"
|
|
253
|
+
stroke-linecap="round"
|
|
254
|
+
stroke-linejoin="round"
|
|
255
|
+
>
|
|
251
256
|
<path d="M52 78 L36 78 A22 22 0 0 1 36 34 L52 34" />
|
|
252
257
|
<path d="M76 34 L92 34 A22 22 0 0 1 92 78 L76 78" />
|
|
253
258
|
<line x1="44" y1="56" x2="84" y2="56" />
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jobshimo/browser-link",
|
|
3
|
-
"version": "0.5
|
|
3
|
+
"version": "0.7.5",
|
|
4
4
|
"description": "MCP server that bridges Claude Code, OpenCode, GitHub Copilot CLI and other MCP clients to a Chrome tab. Per-tool permissions, multi-agent mode (multiple MCP clients sharing one bridge), persistent UI map across sessions.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"mcp",
|
|
@@ -36,6 +36,9 @@
|
|
|
36
36
|
"README.md",
|
|
37
37
|
"LICENSE"
|
|
38
38
|
],
|
|
39
|
+
"engines": {
|
|
40
|
+
"node": ">=22.13"
|
|
41
|
+
},
|
|
39
42
|
"publishConfig": {
|
|
40
43
|
"access": "public"
|
|
41
44
|
},
|
|
@@ -48,7 +51,7 @@
|
|
|
48
51
|
"clean": "node -e \"require('node:fs').rmSync('dist',{recursive:true,force:true})\"",
|
|
49
52
|
"test": "vitest run",
|
|
50
53
|
"test:watch": "vitest",
|
|
51
|
-
"prepublishOnly": "
|
|
54
|
+
"prepublishOnly": "pnpm run clean && pnpm run build && node ./scripts/prepare-publish.mjs"
|
|
52
55
|
},
|
|
53
56
|
"dependencies": {
|
|
54
57
|
"@modelcontextprotocol/sdk": "^1.0.0",
|