-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
manifest.json
41 lines (36 loc) · 895 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
{
"name": "Video Commander",
"short_name": "videocommander",
"version": "0.5",
"manifest_version": 2,
"description": "Video Commander provides keyboard shortcuts to loop, speed up, speed down, rewind time, advance time and other handy actions",
"homepage_url": "https://github.com/noraworld/videocommander",
"icons": {
"16": "icons/icon16.png",
"48": "icons/icon48.png",
"128": "icons/icon128.png"
},
"permissions": [
"activeTab", "storage"
],
"options_ui": {
"page": "options.html"
},
"browser_action": {
"default_icon": "icons/icon128.png"
},
"content_scripts": [
{
"all_frames": true,
"matches": ["<all_urls>"],
"css": ["script.css"],
"js": ["jquery.js", "script.js"]
}
],
"applications": {
"gecko": {
"id": "[email protected]",
"strict_min_version": "57.0"
}
}
}