-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmanifest.json
More file actions
49 lines (49 loc) · 978 Bytes
/
manifest.json
File metadata and controls
49 lines (49 loc) · 978 Bytes
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
{
"manifest_version": 3,
"name": "FastVideo",
"version": "1.0",
"action": {
"default_icon": {
"16": "icons/16.png",
"48": "icons/48.png",
"128": "icons/128.png"
}
},
"icons": {
"16": "icons/16.png",
"48": "icons/48.png",
"128": "icons/128.png"
},
"commands": {
"_execute_action": {
"suggested_key": {
"default": "Alt+Shift+F"
},
"description": "Speed up video"
},
"instant-undo": {
"suggested_key": {
"default": "Alt+Shift+Z"
},
"description": "Rewind and temporarily slow down"
}
},
"options_ui": {
"page": "options.html",
"open_in_tab": false
},
"permissions": [
"activeTab",
"scripting",
"storage"
],
"host_permissions": ["<all_urls>"],
"background": {
"service_worker": "background.js",
"type": "module"
},
"web_accessible_resources": [{
"resources": ["state.js"],
"matches": ["<all_urls>"]
}]
}