@jobshimo/browser-link 0.18.0 → 0.18.2
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/dist/extension/manifest.json +1 -1
- package/dist/ui/app.d.ts +1 -1
- package/dist/ui/components.d.ts +2 -2
- package/dist/ui/primitives/badge.d.ts +1 -1
- package/dist/ui/primitives/check-row.d.ts +1 -1
- package/dist/ui/primitives/footer-keys.d.ts +1 -1
- package/dist/ui/primitives/inline-spinner.d.ts +1 -1
- package/dist/ui/primitives/key-cap.d.ts +1 -1
- package/dist/ui/primitives/menu-row.d.ts +1 -1
- package/dist/ui/primitives/section-head.d.ts +1 -1
- package/dist/ui/primitives/status-bar.d.ts +1 -1
- package/dist/ui/screens/about.d.ts +1 -1
- package/dist/ui/screens/agent-instructions.d.ts +1 -1
- package/dist/ui/screens/client-picker.d.ts +1 -1
- package/dist/ui/screens/doctor.d.ts +1 -1
- package/dist/ui/screens/empty-clients.d.ts +1 -1
- package/dist/ui/screens/extension.d.ts +1 -1
- package/dist/ui/screens/free-port.d.ts +1 -1
- package/dist/ui/screens/install-result.d.ts +1 -1
- package/dist/ui/screens/language.d.ts +1 -1
- package/dist/ui/screens/menu.d.ts +1 -1
- package/dist/ui/screens/multi-agent.d.ts +1 -1
- package/dist/ui/screens/permissions.d.ts +1 -1
- package/dist/ui/screens/port-collision.d.ts +1 -1
- package/dist/ui/screens/updates.d.ts +1 -1
- package/dist/ui/screens/welcome.d.ts +1 -1
- package/package.json +6 -6
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"manifest_version": 3,
|
|
3
3
|
"name": "browser-link",
|
|
4
|
-
"version": "0.18.
|
|
4
|
+
"version": "0.18.2",
|
|
5
5
|
"description": "Bridge between Chrome and an MCP client (Claude Code, OpenCode, GitHub Copilot CLI, …). Per-tab manual activation.",
|
|
6
6
|
"permissions": [
|
|
7
7
|
"debugger",
|
package/dist/ui/app.d.ts
CHANGED
|
@@ -3,5 +3,5 @@ interface AppProps {
|
|
|
3
3
|
initialLanguage: Language;
|
|
4
4
|
skipWelcome: boolean;
|
|
5
5
|
}
|
|
6
|
-
export declare function App({ initialLanguage, skipWelcome }: AppProps): import("react
|
|
6
|
+
export declare function App({ initialLanguage, skipWelcome }: AppProps): import("react").JSX.Element;
|
|
7
7
|
export {};
|
package/dist/ui/components.d.ts
CHANGED
|
@@ -12,7 +12,7 @@ interface FrameProps {
|
|
|
12
12
|
borderColor?: string;
|
|
13
13
|
children: ReactNode;
|
|
14
14
|
}
|
|
15
|
-
export declare function Frame({ title, footer, badge, borderColor, children }: FrameProps): import("react
|
|
15
|
+
export declare function Frame({ title, footer, badge, borderColor, children }: FrameProps): import("react").JSX.Element;
|
|
16
16
|
interface MenuItem<V extends string> {
|
|
17
17
|
value: V;
|
|
18
18
|
label: string;
|
|
@@ -26,5 +26,5 @@ interface MenuProps<V extends string> {
|
|
|
26
26
|
items: MenuItem<V>[];
|
|
27
27
|
selectedIndex: number;
|
|
28
28
|
}
|
|
29
|
-
export declare function Menu<V extends string>({ items, selectedIndex }: MenuProps<V>): import("react
|
|
29
|
+
export declare function Menu<V extends string>({ items, selectedIndex }: MenuProps<V>): import("react").JSX.Element;
|
|
30
30
|
export type { MenuItem };
|
|
@@ -7,5 +7,5 @@ interface BadgeProps {
|
|
|
7
7
|
* string, a version-suffixed label like "installed (v3)", etc. */
|
|
8
8
|
label?: string;
|
|
9
9
|
}
|
|
10
|
-
export declare function Badge({ kind, label }: BadgeProps): import("react
|
|
10
|
+
export declare function Badge({ kind, label }: BadgeProps): import("react").JSX.Element;
|
|
11
11
|
export type { BadgeKind };
|
|
@@ -7,5 +7,5 @@ interface CheckRowProps {
|
|
|
7
7
|
* the muted role — signals the row is currently inactive. */
|
|
8
8
|
dimmed?: boolean;
|
|
9
9
|
}
|
|
10
|
-
export declare function CheckRow({ selected, on, label, hint, dimmed }: CheckRowProps): import("react
|
|
10
|
+
export declare function CheckRow({ selected, on, label, hint, dimmed }: CheckRowProps): import("react").JSX.Element;
|
|
11
11
|
export {};
|
|
@@ -8,5 +8,5 @@ export interface FooterKeyItem {
|
|
|
8
8
|
interface FooterKeysProps {
|
|
9
9
|
items: FooterKeyItem[];
|
|
10
10
|
}
|
|
11
|
-
export declare function FooterKeys({ items }: FooterKeysProps): import("react
|
|
11
|
+
export declare function FooterKeys({ items }: FooterKeysProps): import("react").JSX.Element;
|
|
12
12
|
export {};
|
|
@@ -3,5 +3,5 @@ interface InlineSpinnerProps {
|
|
|
3
3
|
* (cyan) role so it reads as "active" against the body. */
|
|
4
4
|
color?: string;
|
|
5
5
|
}
|
|
6
|
-
export declare function InlineSpinner({ color }: InlineSpinnerProps): import("react
|
|
6
|
+
export declare function InlineSpinner({ color }: InlineSpinnerProps): import("react").JSX.Element;
|
|
7
7
|
export {};
|
|
@@ -2,5 +2,5 @@ interface KeyCapProps {
|
|
|
2
2
|
/** Visible label inside the cap — e.g. "↵", "Esc", "↑↓", "s". */
|
|
3
3
|
label: string;
|
|
4
4
|
}
|
|
5
|
-
export declare function KeyCap({ label }: KeyCapProps): import("react
|
|
5
|
+
export declare function KeyCap({ label }: KeyCapProps): import("react").JSX.Element;
|
|
6
6
|
export {};
|
|
@@ -13,5 +13,5 @@ interface MenuRowProps {
|
|
|
13
13
|
* language picker (current). */
|
|
14
14
|
badge?: ReactNode;
|
|
15
15
|
}
|
|
16
|
-
export declare function MenuRow({ selected, hotkey, label, hint, badge }: MenuRowProps): import("react
|
|
16
|
+
export declare function MenuRow({ selected, hotkey, label, hint, badge }: MenuRowProps): import("react").JSX.Element;
|
|
17
17
|
export {};
|
|
@@ -7,5 +7,5 @@ interface SectionHeadProps {
|
|
|
7
7
|
* tool-family header. */
|
|
8
8
|
hint?: string;
|
|
9
9
|
}
|
|
10
|
-
export declare function SectionHead({ children, hint }: SectionHeadProps): import("react
|
|
10
|
+
export declare function SectionHead({ children, hint }: SectionHeadProps): import("react").JSX.Element;
|
|
11
11
|
export {};
|
|
@@ -9,5 +9,5 @@ export interface StatusBarItem {
|
|
|
9
9
|
interface StatusBarProps {
|
|
10
10
|
items: StatusBarItem[];
|
|
11
11
|
}
|
|
12
|
-
export declare function StatusBar({ items }: StatusBarProps): import("react
|
|
12
|
+
export declare function StatusBar({ items }: StatusBarProps): import("react").JSX.Element;
|
|
13
13
|
export {};
|
|
@@ -2,5 +2,5 @@ import type { CommonProps } from './types.js';
|
|
|
2
2
|
interface AboutViewProps extends CommonProps {
|
|
3
3
|
onBack: () => void;
|
|
4
4
|
}
|
|
5
|
-
export declare function AboutView({ language, onBack }: AboutViewProps): import("react
|
|
5
|
+
export declare function AboutView({ language, onBack }: AboutViewProps): import("react").JSX.Element;
|
|
6
6
|
export {};
|
|
@@ -8,5 +8,5 @@ interface AgentInstructionsViewProps extends CommonProps {
|
|
|
8
8
|
* to row 0 when omitted or when the requested client is not present. */
|
|
9
9
|
initialCursorClient?: ClientId;
|
|
10
10
|
}
|
|
11
|
-
export declare function AgentInstructionsView({ language, onBack, initialCursorClient, }: AgentInstructionsViewProps): import("react
|
|
11
|
+
export declare function AgentInstructionsView({ language, onBack, initialCursorClient, }: AgentInstructionsViewProps): import("react").JSX.Element;
|
|
12
12
|
export {};
|
|
@@ -4,5 +4,5 @@ interface ClientPickerProps extends CommonProps {
|
|
|
4
4
|
onPick: (id: ClientId) => void;
|
|
5
5
|
onBack: () => void;
|
|
6
6
|
}
|
|
7
|
-
export declare function ClientPicker({ language, onPick, onBack }: ClientPickerProps): import("react
|
|
7
|
+
export declare function ClientPicker({ language, onPick, onBack }: ClientPickerProps): import("react").JSX.Element;
|
|
8
8
|
export {};
|
|
@@ -2,5 +2,5 @@ import type { CommonProps } from './types.js';
|
|
|
2
2
|
interface DoctorViewProps extends CommonProps {
|
|
3
3
|
onBack: () => void;
|
|
4
4
|
}
|
|
5
|
-
export declare function DoctorView({ language, onBack }: DoctorViewProps): import("react
|
|
5
|
+
export declare function DoctorView({ language, onBack }: DoctorViewProps): import("react").JSX.Element;
|
|
6
6
|
export {};
|
|
@@ -4,5 +4,5 @@ interface EmptyClientsViewProps extends CommonProps {
|
|
|
4
4
|
onOpenRepo: () => void;
|
|
5
5
|
onBack: () => void;
|
|
6
6
|
}
|
|
7
|
-
export declare function EmptyClientsView({ language, onRescan, onOpenRepo, onBack, }: EmptyClientsViewProps): import("react
|
|
7
|
+
export declare function EmptyClientsView({ language, onRescan, onOpenRepo, onBack, }: EmptyClientsViewProps): import("react").JSX.Element;
|
|
8
8
|
export {};
|
|
@@ -2,5 +2,5 @@ import type { CommonProps } from './types.js';
|
|
|
2
2
|
interface ExtensionViewProps extends CommonProps {
|
|
3
3
|
onBack: () => void;
|
|
4
4
|
}
|
|
5
|
-
export declare function ExtensionView({ language, onBack }: ExtensionViewProps): import("react
|
|
5
|
+
export declare function ExtensionView({ language, onBack }: ExtensionViewProps): import("react").JSX.Element;
|
|
6
6
|
export {};
|
|
@@ -2,5 +2,5 @@ import type { CommonProps } from './types.js';
|
|
|
2
2
|
interface FreePortViewProps extends CommonProps {
|
|
3
3
|
onBack: () => void;
|
|
4
4
|
}
|
|
5
|
-
export declare function FreePortView({ language, onBack }: FreePortViewProps): import("react
|
|
5
|
+
export declare function FreePortView({ language, onBack }: FreePortViewProps): import("react").JSX.Element;
|
|
6
6
|
export {};
|
|
@@ -4,5 +4,5 @@ interface InstallResultProps extends CommonProps {
|
|
|
4
4
|
report: InstallReport;
|
|
5
5
|
onBack: () => void;
|
|
6
6
|
}
|
|
7
|
-
export declare function InstallResultView({ language, report, onBack }: InstallResultProps): import("react
|
|
7
|
+
export declare function InstallResultView({ language, report, onBack }: InstallResultProps): import("react").JSX.Element;
|
|
8
8
|
export {};
|
|
@@ -4,5 +4,5 @@ interface LanguageViewProps extends CommonProps {
|
|
|
4
4
|
onPick: (next: Language) => void;
|
|
5
5
|
onBack: () => void;
|
|
6
6
|
}
|
|
7
|
-
export declare function LanguageView({ language, onPick, onBack }: LanguageViewProps): import("react
|
|
7
|
+
export declare function LanguageView({ language, onPick, onBack }: LanguageViewProps): import("react").JSX.Element;
|
|
8
8
|
export {};
|
|
@@ -14,5 +14,5 @@ interface MainMenuProps extends CommonProps {
|
|
|
14
14
|
* In production this is undefined and the menu calls the real hook. */
|
|
15
15
|
updateState?: UpdateCheckState;
|
|
16
16
|
}
|
|
17
|
-
export declare function MainMenu({ language, onSelect, onSwapLang, onQuit, outdatedClientNames, updateState, }: MainMenuProps): import("react
|
|
17
|
+
export declare function MainMenu({ language, onSelect, onSwapLang, onQuit, outdatedClientNames, updateState, }: MainMenuProps): import("react").JSX.Element;
|
|
18
18
|
export {};
|
|
@@ -2,5 +2,5 @@ import type { CommonProps } from './types.js';
|
|
|
2
2
|
interface MultiAgentViewProps extends CommonProps {
|
|
3
3
|
onBack: () => void;
|
|
4
4
|
}
|
|
5
|
-
export declare function MultiAgentView({ language, onBack }: MultiAgentViewProps): import("react
|
|
5
|
+
export declare function MultiAgentView({ language, onBack }: MultiAgentViewProps): import("react").JSX.Element;
|
|
6
6
|
export {};
|
|
@@ -2,5 +2,5 @@ import type { CommonProps } from './types.js';
|
|
|
2
2
|
interface PermissionsViewProps extends CommonProps {
|
|
3
3
|
onBack: () => void;
|
|
4
4
|
}
|
|
5
|
-
export declare function PermissionsView({ language, onBack }: PermissionsViewProps): import("react
|
|
5
|
+
export declare function PermissionsView({ language, onBack }: PermissionsViewProps): import("react").JSX.Element;
|
|
6
6
|
export {};
|
|
@@ -14,5 +14,5 @@ interface PortCollisionViewProps extends CommonProps {
|
|
|
14
14
|
onRetry?: () => void;
|
|
15
15
|
onQuit: () => void;
|
|
16
16
|
}
|
|
17
|
-
export declare function PortCollisionView({ language, info, onKill, onMultiAgent, onRetry, onQuit, }: PortCollisionViewProps): import("react
|
|
17
|
+
export declare function PortCollisionView({ language, info, onKill, onMultiAgent, onRetry, onQuit, }: PortCollisionViewProps): import("react").JSX.Element;
|
|
18
18
|
export type { PortCollisionInfo };
|
|
@@ -2,5 +2,5 @@ import type { CommonProps } from './types.js';
|
|
|
2
2
|
interface UpdatesViewProps extends CommonProps {
|
|
3
3
|
onBack: () => void;
|
|
4
4
|
}
|
|
5
|
-
export declare function UpdatesView({ language, onBack }: UpdatesViewProps): import("react
|
|
5
|
+
export declare function UpdatesView({ language, onBack }: UpdatesViewProps): import("react").JSX.Element;
|
|
6
6
|
export {};
|
|
@@ -6,5 +6,5 @@ interface WelcomeProps extends CommonProps {
|
|
|
6
6
|
onSwapLang: () => void;
|
|
7
7
|
onQuit: () => void;
|
|
8
8
|
}
|
|
9
|
-
export declare function WelcomeScreen({ language, hideDismiss, onAccept, onDismiss, onSwapLang, onQuit, }: WelcomeProps): import("react
|
|
9
|
+
export declare function WelcomeScreen({ language, hideDismiss, onAccept, onDismiss, onSwapLang, onQuit, }: WelcomeProps): import("react").JSX.Element;
|
|
10
10
|
export {};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jobshimo/browser-link",
|
|
3
|
-
"version": "0.18.
|
|
3
|
+
"version": "0.18.2",
|
|
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",
|
|
@@ -56,16 +56,16 @@
|
|
|
56
56
|
},
|
|
57
57
|
"dependencies": {
|
|
58
58
|
"@modelcontextprotocol/sdk": "^1.0.0",
|
|
59
|
-
"better-sqlite3": "^12.
|
|
59
|
+
"better-sqlite3": "^12.11.1",
|
|
60
60
|
"env-paths": "^4.0.0",
|
|
61
|
-
"ink": "^7.0
|
|
62
|
-
"react": "^19.2.
|
|
63
|
-
"ws": "^8.
|
|
61
|
+
"ink": "^7.1.0",
|
|
62
|
+
"react": "^19.2.7",
|
|
63
|
+
"ws": "^8.21.0"
|
|
64
64
|
},
|
|
65
65
|
"devDependencies": {
|
|
66
66
|
"@types/better-sqlite3": "^7.6.11",
|
|
67
67
|
"@types/node": "^22.19.19",
|
|
68
|
-
"@types/react": "^19.2.
|
|
68
|
+
"@types/react": "^19.2.17",
|
|
69
69
|
"@types/ws": "^8.5.13",
|
|
70
70
|
"@vitest/coverage-v8": "^4.1.7",
|
|
71
71
|
"ink-testing-library": "^4.0.0",
|