-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
34 lines (34 loc) · 975 Bytes
/
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
{
"name": "Snapper - 'Aw snap' tab reloader",
"short_name": "Snapper",
"description": "Reload crashed Chrome tabs (Aw, snap) intended for digital signage. Source code is MIT licensed (https://github.com/bizplay/snapper)",
"manifest_version": 3,
"version": "1.1.0",
"background": {
"service_worker": "javascript/service_worker.js"
},
"permissions": [
"tabs", "alarms", "storage", "scripting"
],
"host_permissions": [
"http://*/*",
"https://*/*",
"file://*/*"
],
"action": {
"default_icon": {
"16": "icons/icon-016.png",
"24": "icons/icon-024.png",
"32": "icons/icon-032.png"
},
"default_title": "Snapper"
},
"icons": {
"16": "icons/icon-016.png",
"19": "icons/icon-019.png",
"24": "icons/icon-024.png",
"32": "icons/icon-032.png",
"48": "icons/icon-048.png",
"128": "icons/icon-128.png"
}
}