From a996f78277d5ba5adccb0daa535bc2494350975c Mon Sep 17 00:00:00 2001 From: srdusr Date: Fri, 26 Sep 2025 12:40:58 +0200 Subject: Initial Commit --- webext/chrome/manifest.json | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 webext/chrome/manifest.json (limited to 'webext/chrome/manifest.json') diff --git a/webext/chrome/manifest.json b/webext/chrome/manifest.json new file mode 100644 index 0000000..977b83c --- /dev/null +++ b/webext/chrome/manifest.json @@ -0,0 +1,30 @@ +{ + "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" + } + ] +} -- cgit v1.2.3