From 79d89b63e0a75f94d88d55e41fc123c5bf46e38c Mon Sep 17 00:00:00 2001 From: Nicholas Tay Date: Wed, 22 Feb 2023 20:11:20 +0100 Subject: Initial working with root CA detection --- manifest.json | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 manifest.json (limited to 'manifest.json') 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 ", + "version": "0.1.0", + "permissions": ["webRequest", "webRequestBlocking", ""], + "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" + } + } +} -- cgit