2026-01-15 04:50:11 +00:00
|
|
|
{
|
|
|
|
|
"manifest_version": 3,
|
2026-01-30 03:15:10 +01:00
|
|
|
"name": "OpenClaw Browser Relay",
|
2026-01-15 04:50:11 +00:00
|
|
|
"version": "0.1.0",
|
2026-01-30 03:15:10 +01:00
|
|
|
"description": "Attach OpenClaw to your existing Chrome tab via a local CDP relay server.",
|
2026-01-15 05:10:57 +00:00
|
|
|
"icons": {
|
|
|
|
|
"16": "icons/icon16.png",
|
|
|
|
|
"32": "icons/icon32.png",
|
|
|
|
|
"48": "icons/icon48.png",
|
|
|
|
|
"128": "icons/icon128.png"
|
|
|
|
|
},
|
2026-02-22 18:17:56 +01:00
|
|
|
"permissions": ["debugger", "tabs", "activeTab", "storage", "alarms", "webNavigation"],
|
2026-01-15 04:50:11 +00:00
|
|
|
"host_permissions": ["http://127.0.0.1/*", "http://localhost/*"],
|
|
|
|
|
"background": { "service_worker": "background.js", "type": "module" },
|
2026-01-15 05:10:57 +00:00
|
|
|
"action": {
|
2026-01-30 03:15:10 +01:00
|
|
|
"default_title": "OpenClaw Browser Relay (click to attach/detach)",
|
2026-01-15 05:10:57 +00:00
|
|
|
"default_icon": {
|
|
|
|
|
"16": "icons/icon16.png",
|
|
|
|
|
"32": "icons/icon32.png",
|
|
|
|
|
"48": "icons/icon48.png",
|
|
|
|
|
"128": "icons/icon128.png"
|
|
|
|
|
}
|
|
|
|
|
},
|
2026-01-15 04:50:11 +00:00
|
|
|
"options_ui": { "page": "options.html", "open_in_tab": true }
|
|
|
|
|
}
|