-
Notifications
You must be signed in to change notification settings - Fork 12
/
manifest.json
46 lines (46 loc) · 1.08 KB
/
manifest.json
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
{
"manifest_version": 2,
"name": "IndicateTLS",
"short_name": "IndicateTLS",
"version": "0.3.1",
"default_locale": "en",
"description": "__MSG_extensionDescription__",
"homepage_url": "https://github.com/jannispinter/indicatetls",
"developer": {
"name": "Jannis Pinter",
"url": "https://github.com/jannispinter/indicatetls"
},
"icons": {
"48": "icons/icon_48.png",
"96": "icons/icon_96.png"
},
"applications": {
"gecko": {
"strict_min_version": "62.0"
}
},
"background": {
"scripts": [
"background.js"
]
},
"page_action": {
"browser_style": true,
"default_icon": "icons/tlsunknown.png",
"default_title": "IndicateTLS",
"show_matches": [
"https://*/*"
],
"hide_matches": [
"https://addons.mozilla.org/*"
]
},
"permissions": [
"tabs",
"webNavigation",
"webRequest",
"webRequestBlocking",
"http://*/*",
"https://*/*"
]
}