-
Notifications
You must be signed in to change notification settings - Fork 7
/
manifest.json
35 lines (35 loc) · 959 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
{
"name": "PDF Dark Mode",
"description": "Dark Mode for PDF files to reduce eye strain.",
"version": "1.0.8",
"manifest_version": 3,
"background": {
"service_worker": "worker.js"
},
"permissions": ["storage", "activeTab", "tabs", "scripting"],
"host_permissions": ["file://*/*", "https://*/*", "http://*/*"],
"action": {
"default_popup": "popup/popup.html",
"default_icon": {
"16": "/images/PDM 128x128.png",
"32": "/images/PDM 128x128.png",
"48": "/images/PDM 128x128.png",
"128": "/images/PDM 128x128.png"
}
},
"icons": {
"16": "/images/PDM 128x128.png",
"32": "/images/PDM 128x128.png",
"48": "/images/PDM 128x128.png",
"128": "/images/PDM 128x128.png"
},
"commands": {
"run-dark-mode": {
"suggested_key": {
"default": "Ctrl+Shift+1",
"mac": "Command+Shift+1"
},
"description": "Run \"PDF Dark Mode\" on the current page."
}
}
}