summaryrefslogtreecommitdiff
path: root/manifest.json
diff options
context:
space:
mode:
authorNicholas Tay <nick@windblume.net>2023-02-22 20:47:39 +0100
committerNicholas Tay <nick@windblume.net>2023-02-22 20:47:39 +0100
commitd538892da62ce2614b9493e64b79f8bac1438fb6 (patch)
tree316841b4773e04721bfc530c574a1421ac153ec3 /manifest.json
parent79d89b63e0a75f94d88d55e41fc123c5bf46e38c (diff)
downloadcertain-d538892da62ce2614b9493e64b79f8bac1438fb6.tar.gz
certain-d538892da62ce2614b9493e64b79f8bac1438fb6.tar.bz2
certain-d538892da62ce2614b9493e64b79f8bac1438fb6.zip
Somewhat working options page
Need to fix per tab thing
Diffstat (limited to 'manifest.json')
-rw-r--r--manifest.json10
1 files changed, 8 insertions, 2 deletions
diff --git a/manifest.json b/manifest.json
index acfa2fd..b685674 100644
--- a/manifest.json
+++ b/manifest.json
@@ -4,7 +4,7 @@
"description": "Keep an eye on your certs, because who can be certain what they are.",
"author": "Nicholas Tay <nick@windblume.net>",
"version": "0.1.0",
- "permissions": ["webRequest", "webRequestBlocking", "<all_urls>"],
+ "permissions": [ "webRequest", "webRequestBlocking", "<all_urls>", "storage" ],
"background": {
"scripts": [ "background.js" ]
},
@@ -18,7 +18,13 @@
},
"browser_specific_settings": {
"gecko": {
- "strict_min_version": "62.0b5"
+ "strict_min_version": "62.0b5",
+ "id": "certain@nick.windblume.net"
}
+ },
+ "options_ui": {
+ "page": "options.html",
+ "open_in_tab": true,
+ "browser_style": false
}
}