-
Notifications
You must be signed in to change notification settings - Fork 43
/
Copy pathmanifest.json
37 lines (37 loc) · 967 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
37
{
"background": {
"service_worker": "background.js",
"type": "module"
},
"action": {
"default_icon": {
"128": "deluminate-128.png"
},
"default_popup": "popup.html",
"default_title": "Deluminate (Shift+F11)"
},
"commands" : {
"command_toggle_global": {
"description": "Toggle Deluminate on/off"
},
"command_toggle_site": {
"description": "Toggle inversion on a site"
}
},
"description": "Invert the luminance of a website to make it easier on the eyes.",
"icons": {
"128": "deluminate-128.png"
},
"name": "Deluminate",
"manifest_version": 3,
"options_page": "options.html",
"permissions": [ "tabs", "offscreen", "storage", "scripting" ],
"host_permissions": [ "<all_urls>" ],
"web_accessible_resources": [
{
"resources": [ "deluminate.css" ],
"matches": [ "<all_urls>" ]
}
],
"version": "1.0.0"
}