blob: acfa2fd328571a9760715e92cb8bae778bcaf51e (
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
|
{
"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"
}
}
}
|