diff options
| author | srdusr <trevorgray@srdusr.com> | 2025-09-26 12:40:58 +0200 |
|---|---|---|
| committer | srdusr <trevorgray@srdusr.com> | 2025-09-26 12:40:58 +0200 |
| commit | a996f78277d5ba5adccb0daa535bc2494350975c (patch) | |
| tree | 08d594ba144f41fb14ebd2354beb2a8cda9be101 /webext/chrome/manifest.json | |
| parent | 91499edd42cc50ee0543e11e08a6b653f3475262 (diff) | |
| download | cerberus-a996f78277d5ba5adccb0daa535bc2494350975c.tar.gz cerberus-a996f78277d5ba5adccb0daa535bc2494350975c.zip | |
Initial Commit
Diffstat (limited to 'webext/chrome/manifest.json')
| -rw-r--r-- | webext/chrome/manifest.json | 30 |
1 files changed, 30 insertions, 0 deletions
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": [ + "<all_urls>" + ], + "action": { + "default_title": "Cerberus", + "default_popup": "popup.html" + }, + "background": { + "service_worker": "background.js" + }, + "content_scripts": [ + { + "matches": ["<all_urls>"], + "js": ["content.js"], + "run_at": "document_end" + } + ] +} |
