opendia/opendia-extension/manifest.json

44 lines
834 B
JSON
Raw Permalink Normal View History

2025-06-13 23:21:32 +02:00
{
"manifest_version": 3,
2025-06-28 20:26:46 +02:00
"name": "OpenDia",
"version": "1.0.5",
2025-06-28 20:26:46 +02:00
"description": "Browser automation through Model Context Protocol",
"icons": {
"16": "icon-16.png",
"32": "icon-32.png",
"48": "icon-48.png",
"128": "icon-128.png"
},
2025-06-13 23:21:32 +02:00
"permissions": [
"tabs",
"activeTab",
"storage",
"scripting",
2025-06-25 19:07:09 +02:00
"webNavigation",
2025-06-27 15:01:01 +02:00
"notifications",
"bookmarks",
"history"
2025-06-13 23:21:32 +02:00
],
"host_permissions": [
"<all_urls>"
],
"background": {
"service_worker": "background.js"
},
"action": {
"default_popup": "popup.html",
2025-06-28 20:26:46 +02:00
"default_title": "OpenDia"
2025-06-13 23:21:32 +02:00
},
"content_scripts": [
{
"matches": ["<all_urls>"],
"js": ["content.js"],
"run_at": "document_idle"
}
],
"externally_connectable": {
"ids": ["*"],
"matches": ["http://localhost/*"]
}
2025-06-27 15:01:01 +02:00
}