-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
executable file
·55 lines (55 loc) · 1.15 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
{
"name": "FrameGrab",
"description": "Tools for Video Frame Capture",
"version": "0.0.1.0",
"manifest_version": 3,
"background": {
"service_worker": "background.js"
},
"icons": {
"16": "icon16.png",
"48": "icon48.png",
"128": "icon128.png"
},
"commands": {
"download": {
"suggested_key": {
"default": "Ctrl+Shift+Down",
"mac": "Command+Shift+Down"
},
"description": "Download Current Frame"
},
"newtab": {
"suggested_key": {
"default": "Ctrl+Shift+Up",
"mac": "Command+Shift+Up"
},
"description": "Open Current Frame in New Tab"
},
"newtabbg": {
"suggested_key": {
"default": "Ctrl+Shift+Right",
"mac": "Command+Shift+Right"
},
"description": "Open Current Frame in New Background Tab"
},
"slow": {
"suggested_key": {
"default": "Ctrl+Shift+Left",
"mac": "Command+Shift+Left"
},
"description": "Toggle Speed to 0"
}
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"all_frames": true,
"js": [
"page.js"
]
}
]
}