-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
56 lines (56 loc) · 1.26 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
{
"name": "YourTube",
"version": "1.0",
"description": "HackGT Project",
"permissions": ["declarativeContent", "storage", "activeTab", "tabs", "<all_urls>", "alarms"],
"background": {
"scripts": ["background.js"],
"persistent": false
},
"browser_action": {
"default_popup": "popup.html",
"default_icon": {
"16": "YourTube.png",
"32": "YourTube.png",
"48": "YourTube.png",
"128": "YourTube.png"
}
},
"icons": {
"16": "YourTube.png",
"32": "YourTube.png",
"48": "YourTube.png",
"128": "YourTube.png"
},
"commands": {
"toggle-speedUp": {
"suggested_key": {
"default": "Ctrl+Right",
"mac": "Command+Right"
},
"description": "Toggle speedUp"
},
"toggle-speedDown": {
"suggested_key": {
"default": "Ctrl+Left",
"mac": "Command+Left"
},
"description": "Toggle speedDown"
},
"toggle-mirror": {
"suggested_key": {
"default": "Ctrl+Down",
"mac": "Command+Down"
},
"description": "Toggle mirror"
},
"toggle-rotate90": {
"suggested_key": {
"default": "Ctrl+Up",
"mac": "Command+Up"
},
"description": "Toggle quick rotate90"
}
},
"manifest_version": 2
}