-
Notifications
You must be signed in to change notification settings - Fork 2
/
manifest-firefox.json
80 lines (76 loc) · 1.84 KB
/
manifest-firefox.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
77
78
79
80
{
"manifest_version": 2,
"name": "Mixcloud (with) Tracklist",
"version": "5.0.1",
"description": "Display tracklists on Mixcloud",
"icons": {
"16": "./icons/icon16.png",
"32": "./icons/icon32.png",
"48": "./icons/icon48.png",
"96": "./icons/icon96.png",
"128": "./icons/icon128.png"
},
"applications": {
"gecko": {
"strict_min_version": "58.0"
}
},
"permissions": [
"webRequest",
"tabs",
"http://*.mixcloud.com/*", "https://*.mixcloud.com/*",
"storage"
],
"background": {
"scripts": ["./background_scripts/index.js"],
"persistent" : false
},
"content_scripts": [
{
"matches": ["*://*.mixcloud.com/*"],
"run_at" : "document_end",
"js": ["./content_script/index.js"]
}
],
"browser_action": {
"default_area" : "navbar",
"default_icon": {
"16": "./icons/icon16.png",
"32": "./icons/icon32.png",
"48": "./icons/icon48.png",
"96": "./icons/icon96.png",
"128": "./icons/icon128.png"
},
"default_title": "Mixcloud (with) Tracklist",
"default_popup": "popup/popup.html",
"theme_icons": [{
"light": "./icons/icon16-light.png",
"dark": "./icons/icon16.png",
"size": 16
}, {
"light": "./icons/icon32-light.png",
"dark": "./icons/icon32.png",
"size": 32
},{
"light": "./icons/icon48-light.png",
"dark": "./icons/icon48.png",
"size": 48
},
{
"light": "./icons/icon96-light.png",
"dark": "./icons/icon96.png",
"size": 96
},
{
"light": "./icons/icon128-light.png",
"dark": "./icons/icon128.png",
"size": 128
}]
},
"web_accessible_resources": [
"onboarding/onboarding-install.html",
"onboarding/onboarding-update.html",
"onboarding/ext-icon.png",
"icons/icon48.png"
]
}