opendia/opendia-extension/manifest.json
Aaron Elijah Mars 3006bceac4 improved design
2025-06-28 20:26:46 +02:00

44 lines
834 B
JSON

{
"manifest_version": 3,
"name": "OpenDia",
"version": "1.0.0",
"description": "Browser automation through Model Context Protocol",
"icons": {
"16": "icon-16.png",
"32": "icon-32.png",
"48": "icon-48.png",
"128": "icon-128.png"
},
"permissions": [
"tabs",
"activeTab",
"storage",
"scripting",
"webNavigation",
"notifications",
"bookmarks",
"history"
],
"host_permissions": [
"<all_urls>"
],
"background": {
"service_worker": "background.js"
},
"action": {
"default_popup": "popup.html",
"default_title": "OpenDia"
},
"content_scripts": [
{
"matches": ["<all_urls>"],
"js": ["content.js"],
"run_at": "document_idle"
}
],
"externally_connectable": {
"ids": ["*"],
"matches": ["http://localhost/*"]
}
}