forked from uku/Unblock-Youku
-
Notifications
You must be signed in to change notification settings - Fork 3
/
manifest.json
54 lines (54 loc) · 1.38 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
{
"name": "Unblock Youku",
"version": "2.8.0.8",
"manifest_version": 2,
"minimum_chrome_version": "25.0",
"description": "__MSG_description__",
"icons": {
"16": "chrome/icons/icon16.png",
"48": "chrome/icons/icon48.png",
"128": "chrome/icons/icon128.png"
},
"permissions": [
"proxy",
"webRequest",
"webRequestBlocking",
"storage",
"http://*/*",
"https://*/*"
],
"background": {
"scripts": [
"shared/urls.js",
"shared/tools.js",
"chrome/pages/js/analytics.js",
"chrome/storage.js",
"chrome/header.js",
"chrome/proxy.js",
"chrome/redirect.js",
"chrome/config.js"
]
},
"browser_action": {
"default_title": "Unblock Youku isn't working properly! Visit http://uku.im/faq for solutions.",
"default_icon": "chrome/icons/icon19gray.png",
"default_popup": "chrome/pages/popup.html"
},
"options_page": "chrome/pages/options.html",
"content_scripts": [{
"matches": ["http://www.tudou.com/*"],
"js": ["chrome/content/tudou.js"],
"run_at": "document_end",
"all_frames": true
}, {
"matches": ["http://play.baidu.com/*"],
"css": ["chrome/content/play.baidu.css"],
"all_frames": true
}, {
"matches": ["http://music.163.com/*"],
"js": ["chrome/content/music.163.js"],
"run_at": "document_end",
"all_frames": true
}],
"default_locale": "en"
}