mirror of
https://github.com/aaronjmars/opendia.git
synced 2025-12-29 16:16:00 +00:00
45 lines
884 B
JSON
45 lines
884 B
JSON
|
|
{
|
||
|
|
"manifest_version": 3,
|
||
|
|
"name": "OpenDia Browser 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": "OpenDia Browser Bridge"
|
||
|
|
},
|
||
|
|
"content_scripts": [
|
||
|
|
{
|
||
|
|
"matches": ["<all_urls>"],
|
||
|
|
"js": ["content.js"],
|
||
|
|
"run_at": "document_idle"
|
||
|
|
}
|
||
|
|
],
|
||
|
|
"externally_connectable": {
|
||
|
|
"ids": ["*"],
|
||
|
|
"matches": ["http://localhost/*"]
|
||
|
|
}
|
||
|
|
}
|