-
Notifications
You must be signed in to change notification settings - Fork 651
/
manifest.json
82 lines (82 loc) · 1.87 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
75
76
77
78
79
80
81
82
{
"name": "Unblock Youku",
"version": "4.1.3",
"manifest_version": 3,
"minimum_chrome_version": "103.0",
"default_locale": "en",
"description": "__MSG_description__",
"icons": {
"16": "icons/icon16.png",
"48": "icons/icon48.png",
"128": "icons/icon128.png"
},
"permissions": [
"proxy",
"declarativeNetRequestWithHostAccess",
"storage"
],
"host_permissions": [
"http://*/*",
"https://*/*"
],
"background": {
"service_worker": "src/service_worker.mjs",
"type": "module"
},
"action": {
"default_popup": "src/popup.html",
"default_icon": "icons/icon19gray.png",
"default_title": "Unblock Youku isn't working properly! Visit http://uku.im/faq for solutions."
},
"options_page": "src/options.html",
"content_scripts": [
{
"matches": [
"http://www.tudou.com/*"
],
"js": [
"src/content_scripts/tudou.js"
],
"run_at": "document_end",
"all_frames": true
},
{
"matches": [
"http://play.baidu.com/*"
],
"css": [
"src/content_scripts/play.baidu.css"
],
"all_frames": true
},
{
"matches": [
"http://music.163.com/*"
],
"js": [
"src/content_scripts/music.163.js"
],
"run_at": "document_end",
"all_frames": true
},
{
"matches": [
"http://unblockcn.com/*",
"https://unblockcn.com/*",
"http://*.unblockcn.com/*",
"https://*.unblockcn.com/*",
"http://unblockyouku.cn/*",
"http://*.unblockyouku.cn/*",
"http://724sky.com/*",
"http://*.724sky.com/*",
"http://tieba.baidu.com/f?kw=unblockcn*",
"http://*.tieba.baidu.com/f?kw=unblockcn*"
],
"js": [
"src/content_scripts/unblockcn.js"
],
"run_at": "document_end",
"all_frames": true
}
]
}