-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
54 lines (54 loc) · 1.05 KB
/
manifest.json
File metadata and controls
54 lines (54 loc) · 1.05 KB
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
{
"version": "1.1",
"name": "FoxHorn",
"description": "Tool for drive online media players.",
"homepage_url": "https://github.com/wayerr/foxhorn",
"manifest_version": 2,
"applications": {
"gecko": {
"id": "{981a2666-0f32-4ca5-94e8-e8cb039aa746}",
"strict_min_version": "50.0"
}
},
"icons": {
"48": "icons/logo-48.png"
},
"browser_action": {
"default_title": "FoxHorn",
"default_popup": "src/popup.html",
"default_icon": {
"48": "icons/logo-48.png"
}
},
"commands": {
"cmd-play": {
"description": "Toggle play/pause"
},
"cmd-prev": {
"description": "Next track"
},
"cmd-next": {
"description": "Previous track"
}
},
"background": {
"scripts": [
"src/common.js",
"src/options_common.js",
"src/daemon.js"
]
},
"options_ui": {
"page": "src/options.html"
},
"permissions": [
"tabs",
"activeTab",
"webNavigation",
"<all_urls>",
"storage"
],
"web_accessible_resources": [
"src/player/*.js"
]
}