opendia/opendia-extension/manifest.json

38 lines
824 B
JSON
Raw Normal View History

2025-06-13 23:21:32 +02:00
{
"manifest_version": 3,
2025-06-25 19:07:09 +02:00
"name": "OpenDia Enhanced Browser Automation",
"version": "2.0.0",
"description": "Enhanced browser automation through Model Context Protocol with pattern database and semantic analysis",
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-25 19:07:09 +02:00
"default_title": "OpenDia Enhanced Browser Automation"
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
}