forked from listen1/listen1_chrome_extension
-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest_firefox.json
30 lines (30 loc) · 1.04 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
{
"applications": {
"gecko": {
"id": "[email protected]",
"strict_min_version": "45.0"
}
},
"background": {
"scripts": ["js/vendor/jquery-2.2.3.min.js", "js/github_api.js","js/background.js" ]
},
"browser_action": {
"default_icon": "images/logo.png",
"default_title": "Listen 1"
},
"description": "One for all free music in China",
"icons": {
"128": "images/logo.png",
"16": "images/logo_16.png",
"48": "images/logo_48.png"
},
"manifest_version": 2,
"name": "Listen 1",
"permissions": [ "notifications", "unlimitedStorage", "downloads", "storage", "contextMenus", "tabs", "*://music.163.com/*", "*://*.xiami.com/*", "*://*.qq.com/*", "*://api.github.com/*", "*://github.com/*", "webRequest", "webRequestBlocking"],
"version": "1.5.2",
"web_accessible_resources": [ "images/*" ],
"content_scripts": [{
"matches": ["https://listen1.github.io/listen1/*"],
"js": ["js/oauth_callback.js"]
}]
}