-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
manifest.json
71 lines (65 loc) · 1.51 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"manifest_version": 2,
"name": "Server Status",
"version": "1.3",
"author": "Teal Dulcet",
"description": "Quickly view basic info about every webpage, including server location, IP addresses, certificate issuer and expiration date, HTTP status code and load time.",
"homepage_url": "https://github.com/tdulcet/Server-Status",
"icons": {
"32": "icons/icon_32.png",
"64": "icons/icon_64.png",
"128": "icons/icon_128.png"
},
"permissions": [
"storage",
"unlimitedStorage",
"tabs",
"webNavigation",
"webRequest",
"webRequestBlocking",
"dns",
"notifications",
"idle",
"alarms",
"privacy",
"<all_urls>"
],
"browser_action": {
"browser_style": true,
"default_icon": {
"32": "icons/icon_32.png",
"64": "icons/icon_64.png",
"128": "icons/icon_128.png"
},
"default_title": "Server Status, ⟳ Refresh page to show",
"default_popup": "popup.html"
},
"options_ui": {
"page": "options/options.html",
"browser_style": true
},
"background": {
"scripts": ["background.js"],
"type": "module"
},
"commands": {
"_execute_browser_action": {
"suggested_key": {
"default": "Ctrl+Alt+S"
},
"description": "Open popup"
}
},
"content_scripts": [
{
"matches": ["<all_urls>"],
"js": ["content_script.js"]
}
],
"browser_specific_settings": {
"gecko": {
"id": "[email protected]",
"strict_min_version": "114.0"
}
}
}