opendia/extension/manifest.json
2025-06-11 16:29:16 +02:00

43 lines
868 B
JSON

{
"manifest_version": 3,
"name": "Browser MCP Bridge",
"version": "1.0.0",
"description": "Exposes browser functions through Model Context Protocol",
"permissions": [
"tabs",
"activeTab",
"storage",
"bookmarks",
"history",
"downloads",
"cookies",
"webNavigation",
"scripting",
"nativeMessaging",
"contextMenus",
"notifications",
"alarms",
"clipboardRead",
"clipboardWrite"
],
"host_permissions": ["<all_urls>"],
"background": {
"service_worker": "background.js"
},
"action": {
"default_popup": "popup.html",
"default_title": "MCP Browser Bridge"
},
"content_scripts": [
{
"matches": ["<all_urls>"],
"js": ["content.js"],
"run_at": "document_idle"
}
],
"externally_connectable": {
"ids": ["*"],
"matches": ["http://localhost/*"]
}
}