-
Notifications
You must be signed in to change notification settings - Fork 3
/
manifest.json
60 lines (60 loc) · 1.18 KB
/
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "MediaMorph",
"version": "0.0.1",
"manifest_version": 3,
"icons": {
"128": "assets/images/logo.png"
},
"permissions": [
"activeTab",
"scripting",
"storage"
],
"action": {
"default_popup": "/assets/popup.html",
"default_icon": "/assets/images/logo.png"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"/assets/content.js"
]
}
],
"background": {
"service_worker": "/assets/background.js"
},
"commands": {
"skip_forward": {
"suggested_key": {
"default": "Ctrl+Shift+Right"
},
"description": "Skip Forward 5 Seconds"
},
"skip_backward": {
"suggested_key": {
"default": "Ctrl+Shift+Left"
},
"description": "Skip Backward 5 Seconds"
},
"enable_autoplay": {
"suggested_key": {
"default": "Ctrl+Shift+Down"
},
"description": "Toggle Auto Skip"
},
"disable_autoplay": {
"suggested_key": {
"default": "Ctrl+Shift+Up"
},
"description": "Disable Auto Skip"
}
},
"options_ui": {
"page": "assets/settings/settings.html",
"open_in_tab": true
}
}