Skip to content

v0.1.0 — first public release

Latest

Choose a tag to compare

@legisus legisus released this 11 Jul 06:57

Initial public release of AI Browser Bridge.

What it is: a minimal bridge that lets an AI coding agent (Claude Code, or any tool that can run a shell command) drive your real, logged-in Chrome — localhost-only, no cloud.

Components

  • extension/ — Manifest V3 extension (service worker) executing commands via chrome.debugger, chrome.tabs, chrome.downloads
  • server/server.js — WebSocket relay bound to 127.0.0.1 with mandatory token auth
  • server/cli.js — one-shot CLI: JSON out, non-zero exit on failure

Commands: ping, listTabs, newTab, navigate, activateTab, closeTab, eval (CSP-proof), click / insertText / key (trusted input), screenshot, pdf, download (authenticated), detach

Security model: loopback-only binding, token auth (chmod 600), optional per-domain allowlist, full command audit log, Chrome's native debugger banner always visible when attached.

Install & docs: see the README and docs/CLAUDE-CODE.md.