diff options
Diffstat (limited to '')
-rw-r--r-- | manifest.json | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/manifest.json b/manifest.json new file mode 100644 index 0000000..08eeaa5 --- /dev/null +++ b/manifest.json @@ -0,0 +1,31 @@ +{ + "manifest_version": 2, + "name": "certose", + "description": "Cert-expiry-watching, just like people-watching.", + "author": "Nicholas Tay <nick@windblume.net>", + "version": "0.1.0", + "permissions": [ "webRequest", "webRequestBlocking", "<all_urls>", "storage" ], + "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.0", + "id": "certose@nick.windblume.net", + "update_url": "https://git.windblume.net/pub/nick/certose/plain/updates.json" + } + }, + "options_ui": { + "page": "options.html", + "open_in_tab": true, + "browser_style": false + } +} |