summaryrefslogtreecommitdiff
path: root/manifest.json
diff options
context:
space:
mode:
authorNicholas Tay <nick@windblume.net>2023-02-22 20:11:20 +0100
committerNicholas Tay <nick@windblume.net>2023-02-22 20:11:34 +0100
commit79d89b63e0a75f94d88d55e41fc123c5bf46e38c (patch)
tree6a7891a275cd0e697011a8170b3b77323a608c7d /manifest.json
downloadcertain-79d89b63e0a75f94d88d55e41fc123c5bf46e38c.tar.gz
certain-79d89b63e0a75f94d88d55e41fc123c5bf46e38c.tar.bz2
certain-79d89b63e0a75f94d88d55e41fc123c5bf46e38c.zip
Initial working with root CA detection
Diffstat (limited to 'manifest.json')
-rw-r--r--manifest.json24
1 files changed, 24 insertions, 0 deletions
diff --git a/manifest.json b/manifest.json
new file mode 100644
index 0000000..acfa2fd
--- /dev/null
+++ b/manifest.json
@@ -0,0 +1,24 @@
+{
+ "manifest_version": 2,
+ "name": "cert/ain",
+ "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>"],
+ "background": {
+ "scripts": [ "background.js" ]
+ },
+ "icons": {
+ "32": "icons/def.png"
+ },
+ "browser_action": {
+ "default_icon": {
+ "32": "icons/def.png"
+ }
+ },
+ "browser_specific_settings": {
+ "gecko": {
+ "strict_min_version": "62.0b5"
+ }
+ }
+}