{ "manifest_version": 3, "name": "OpenDia", "version": "1.0.6", "description": "Connect your browser to AI models", "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": [ "" ], "background": { "service_worker": "background.js" }, "action": { "default_popup": "popup.html", "default_title": "OpenDia" }, "content_scripts": [ { "matches": [""], "js": ["content.js"], "run_at": "document_idle" } ], "externally_connectable": { "ids": ["*"], "matches": ["http://localhost/*"] } }