aboutsummaryrefslogtreecommitdiff
path: root/webext/firefox/manifest.json
diff options
context:
space:
mode:
Diffstat (limited to 'webext/firefox/manifest.json')
-rw-r--r--webext/firefox/manifest.json35
1 files changed, 35 insertions, 0 deletions
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",
+ "<all_urls>"
+ ],
+ "background": {
+ "scripts": ["background.js"],
+ "persistent": false
+ },
+ "content_scripts": [
+ {
+ "matches": ["<all_urls>"],
+ "js": ["content.js"],
+ "run_at": "document_end"
+ }
+ ],
+ "browser_action": {
+ "default_title": "Cerberus",
+ "default_popup": "popup.html"
+ }
+ ,
+ "browser_specific_settings": {
+ "gecko": {
+ "id": "cerberus@example.com"
+ }
+ }
+}