forked from listen1/listen1_chrome_extension
-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
74 lines (70 loc) · 1.7 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
{
"background": {
"scripts": [
"js/vendor/axios.min.js",
"js/vendor/forge_listen1_fork.min.js",
"js/github.js",
"js/background.js",
"js/vendor/howler.core.min.js",
"js/bridge.js",
"js/vendor/async.min.js",
"js/vendor/lru-cache.min.js",
"js/lowebutil.js",
"js/provider/xiami.js",
"js/provider/qq.js",
"js/provider/netease.js",
"js/provider/kugou.js",
"js/provider/kuwo.js",
"js/provider/bilibili.js",
"js/provider/migu.js",
"js/provider/taihe.js",
"js/provider/localmusic.js",
"js/myplaylist.js",
"js/loweb.js",
"js/player_thread.js"
],
"persistent": true
},
"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",
"cookies",
"*://music.163.com/*",
"*://*.music.163.com/*",
"*://*.xiami.com/*",
"*://*.qq.com/*",
"*://*.kugou.com/",
"*://*.kuwo.cn/",
"*://*.bilibili.com/*",
"*://*.bilivideo.com/*",
"*://*.bilivideo.cn/*",
"*://*.migu.cn/*",
"*://*.taihe.com/*",
"*://music.91q.com/*",
"*://api.github.com/*",
"*://github.com/*",
"*://gist.githubusercontent.com/*",
"webRequest",
"webRequestBlocking"
],
"version": "2.32.0",
"web_accessible_resources": ["images/*"],
"content_scripts": [
{
"matches": ["https://listen1.github.io/listen1/*"],
"js": ["js/oauth_callback.js"]
}
]
}