{ "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": [ "" ], "background": { "service_worker": "background.js" }, "action": { "default_popup": "popup.html", "default_title": "OpenDia Browser Bridge" }, "content_scripts": [ { "matches": [""], "js": ["content.js"], "run_at": "document_idle" } ], "externally_connectable": { "ids": ["*"], "matches": ["http://localhost/*"] } }