aboutsummaryrefslogtreecommitdiff
path: root/webext/chrome/manifest.json
diff options
context:
space:
mode:
Diffstat (limited to 'webext/chrome/manifest.json')
-rw-r--r--webext/chrome/manifest.json30
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"
+ }
+ ]
+}