From a996f78277d5ba5adccb0daa535bc2494350975c Mon Sep 17 00:00:00 2001 From: srdusr Date: Fri, 26 Sep 2025 12:40:58 +0200 Subject: Initial Commit --- webext/firefox/manifest.json | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 webext/firefox/manifest.json (limited to 'webext/firefox/manifest.json') diff --git a/webext/firefox/manifest.json b/webext/firefox/manifest.json new file mode 100644 index 0000000..12b2e7a --- /dev/null +++ b/webext/firefox/manifest.json @@ -0,0 +1,35 @@ +{ + "manifest_version": 2, + "name": "Cerberus Password Manager", + "version": "0.1.0", + "description": "Auto-fill and manage passwords with Cerberus.", + "permissions": [ + "activeTab", + "storage", + "contextMenus", + "tabs", + "nativeMessaging", + "" + ], + "background": { + "scripts": ["background.js"], + "persistent": false + }, + "content_scripts": [ + { + "matches": [""], + "js": ["content.js"], + "run_at": "document_end" + } + ], + "browser_action": { + "default_title": "Cerberus", + "default_popup": "popup.html" + } + , + "browser_specific_settings": { + "gecko": { + "id": "cerberus@example.com" + } + } +} -- cgit v1.2.3