Files
clawdbot/assets/chrome-extension/manifest.json
2026-01-15 04:52:28 +00:00

13 lines
502 B
JSON

{
"manifest_version": 3,
"name": "Clawdbot Browser Relay",
"version": "0.1.0",
"description": "Attach Clawdbot to your existing Chrome tab via a local CDP relay server.",
"permissions": ["debugger", "tabs", "activeTab", "storage"],
"host_permissions": ["http://127.0.0.1/*", "http://localhost/*"],
"background": { "service_worker": "background.js", "type": "module" },
"action": { "default_title": "Attach Clawdbot" },
"options_ui": { "page": "options.html", "open_in_tab": true }
}