-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
76 lines (64 loc) · 1.35 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"manifest_version": 2,
"name": "Lowder",
"description": "Decrease volume from tabs, except current.",
"version": "1.0",
"background": {
"scripts" : ["js/background.js"],
"persistent" : false
},
"icons": {
"19" : "img/icon.png",
"38" : "img/icon.png",
"48" : "img/icon.png",
"128" : "img/icon.png"
},
"browser_action": {
"default_icon": {
"19" : "img/icon.png",
"38" : "img/icon.png",
"48" : "img/icon.png",
"128" : "img/icon.png"
},
"default_popup": "popup.html"
},
"content_scripts": [
{
"js": ["js/jquery-1.11.2.js", "js/inject.js"],
"matches": ["<all_urls>"],
"css": ["css/inject.css"],
"run_at": "document_start",
"all_frames": true
}
],
"commands": {
"play" : {
"suggested_key": {
"default": "Alt+Shift+K",
"mac": "Alt+Shift+K"
},
"description": "play tab media"
},
"stop" : {
"suggested_key": {
"default": "Alt+Shift+X",
"mac": "Alt+Shift+X"
},
"description": "stop tab media"
},
"_execute_browser_action": {
"suggested_key": {
"default": "Ctrl+Shift+X",
"mac": "Ctrl+Shift+X"
}
}
},
"permissions": [
"storage",
"background",
"tabs",
"activeTab",
"notifications",
"<all_urls>"
]
}