-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
45 lines (45 loc) · 963 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
38
39
40
41
42
43
44
45
{
"manifest_version": 3,
"name": "Mangadex media controls",
"version": "1.0",
"author": "agaudreau1997",
"description": "Adds media controls functionnality to mangadex to navigate through pages",
"permissions": ["tabs", "contextMenus"],
"content_scripts": [
{
"matches": [
"https://mangadex.org/chapter/*"
],
"js": [
"content.js"
]
}
],
"commands": {
"prev": {
"suggested_key": {
"default": "MediaPrevTrack",
"mac": "MediaPrevTrack"
},
"description": "Previous page",
"global": true
},
"next": {
"suggested_key": {
"default": "MediaNextTrack",
"mac": "MediaNextTrack"
},
"description": "Next page",
"global": true
}
},
"background": {
"service_worker": "background.js"
},
"action": {
"default_icon": {
"16": "logo.png"
},
"default_popup": "popup.html"
}
}