{ "manifest_version": 3, "name": "Cerberus Password Manager", "version": "0.1.0", "description": "Auto-fill and manage passwords with Cerberus.", "permissions": [ "activeTab", "storage", "tabs", "scripting", "nativeMessaging" ], "host_permissions": [ "" ], "action": { "default_title": "Cerberus", "default_popup": "popup.html" }, "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [""], "js": ["content.js"], "run_at": "document_end" } ] }