{ "manifest_version": 3, "name": "KeePassGO Browser", "version": "0.8.2", "description": "Fill credentials from KeePassGO on sign-in pages.", "permissions": ["activeTab", "nativeMessaging", "storage", "tabs"], "host_permissions": ["http://*/*", "https://*/*"], "background": { "service_worker": "background.js" }, "action": { "default_title": "KeePassGO Browser", "default_popup": "popup.html" }, "options_ui": { "page": "options.html", "open_in_tab": true }, "content_scripts": [ { "matches": ["http://*/*", "https://*/*"], "js": ["content.js"], "run_at": "document_idle" } ] }