-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathmanifest.json
More file actions
41 lines (41 loc) · 1.08 KB
/
manifest.json
File metadata and controls
41 lines (41 loc) · 1.08 KB
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
{
"version": "0.3.5",
"name": "Smart HTTPS",
"manifest_version": 3,
"short_name": "smart-https",
"host_permissions": ["http://*/*", "https://*/*"],
"homepage_url": "https://mybrowseraddon.com/smart-https.html",
"description": "Automatically changes HTTP protocol to HTTPS, and if loading encounters error, reverts it back to HTTP.",
"commands": {
"_execute_action": {}
},
"background": {
"service_worker": "background.js"
},
"options_ui": {
"open_in_tab": true,
"page": "data/options/options.html"
},
"permissions": [
"storage",
"webRequest",
"declarativeNetRequest"
],
"action": {
"default_title": "Smart HTTPS",
"default_popup": "data/popup/popup.html",
"default_icon": {
"16": "data/icons/16.png",
"32": "data/icons/32.png",
"48": "data/icons/48.png",
"64": "data/icons/64.png"
}
},
"icons": {
"16": "data/icons/16.png",
"32": "data/icons/32.png",
"48": "data/icons/48.png",
"64": "data/icons/64.png",
"128": "data/icons/128.png"
}
}