summaryrefslogtreecommitdiff
path: root/manifest.json
blob: 08eeaa56337c38028f002edb586bfa576c130317 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
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
    }
}