-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathmanifest.json
36 lines (36 loc) · 958 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
35
36
{
"name": "Rescroller",
"version": "2024.7.7",
"version_name": "2024.7.7",
"manifest_version": 3,
"description": "Decorate your scrollbars.",
"icons": {
"16": "appicons/icon16.png",
"19": "appicons/icon19.png",
"38": "appicons/icon38.png",
"48": "appicons/icon48.png",
"128": "appicons/icon128.png"
},
"options_page": "options.html",
"action": {
"default_title": "Rescroller Settings",
"default_icon": "appicons/icon19.png"
},
"background": {
"service_worker": "js/service-worker.js",
"type": "module"
},
"permissions": ["storage", "scripting"],
"host_permissions": ["http://*/*", "https://*/*", "file://*/*"],
"web_accessible_resources": [
{
"resources": [
"images/defaults/up.png",
"images/defaults/down.png",
"images/defaults/left.png",
"images/defaults/right.png"
],
"matches": ["http://*/*", "https://*/*", "file://*/*"]
}
]
}