-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
24 lines (24 loc) · 905 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
{
"name": "VIZ Hotkeys - For VIZ Manga & Shonen Jump",
"description": "✧ Keyboard Shortcuts / Hotkeys for VIZ.com's Manga Reader (Regular & Shounen Jump) ✧",
"version": "0.1.5",
"manifest_version": 3,
"options_page": "/options/options.html",
"action": {
"default_icon": "/assets/vizControlsLogo.png",
"default_popup": "/options/options.html"
},
"content_scripts": [ {
"js": [ "main.js" ],
"matches": [ "*://www.viz.com/shonenjump/*", "*://www.viz.com/read/manga/*" ],
"run_at": "document_idle"
}],
"web_accessible_resources": [
{
"resources": [ "/scripts/hotkey.js", "/cfg/defaults.json" ],
"matches": [ "http://www.viz.com/*", "https://www.viz.com/*" ]
}
],
"permissions": [ "storage" ],
"host_permissions": [ "*://www.viz.com/shonenjump/*", "*://www.viz.com/read/manga/*" ]
}