-
Notifications
You must be signed in to change notification settings - Fork 5
/
manifest.json
52 lines (45 loc) · 1.04 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
47
48
49
50
51
52
{
"manifest_version": 3,
"name": "moarTLS Analyzer",
"short_name": "moarTLS",
"description": "Analyze webpages for non-secure link references.",
"version": "1.1.0.1",
"author": "Eric Lawrence (@ericlaw)",
"options_ui": {
"page": "options.html"
},
"minimum_chrome_version": "120",
"commands": {
"_execute_action": {
"description": "Check the current page for non-secure references",
"suggested_key": {
"default": "Alt+M"
}
}
},
"icons": {
"16": "images/icon16.png",
"32": "images/icon32.png",
"48": "images/icon48.png",
"128": "images/icon128.png"
},
"action": {
"default_icon": {
"19": "images/icon19.png",
"38": "images/icon38.png"
},
"default_popup": "popup.html",
"default_title": "Mark non-secure links"
},
"background": {
"service_worker": "background.js"
},
"host_permissions": ["https://*/*"],
"permissions": [
"activeTab",
"notifications",
"storage",
"scripting",
"downloads"
]
}