-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
98 lines (98 loc) · 2.76 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "d-party",
"description": "dアニメストアでは行う事ができない、オンラインでの『同時に視聴機能』を提供するための拡張機能",
"version": "1.0.0",
"background": { "service_worker": "js/background.js" },
"action": {
"default_title": "d-party 設定",
"default_popup": "html/popup.html",
"content_security_policy": "default-src 'self';"
},
"content_scripts": [
{
"matches": [
"https://anime.dmkt-sp.jp/animestore/sc_d_pc?*",
"https://anime.dmkt-sp.jp/animestore/sc_d_pc?*"
],
"js": [
"js/common/settings.js",
"js/library/fontawesome.js",
"js/library/awesome-notification.js",
"js/library/jquery-3.6.0.js",
"js/library/jquery.easing.min.js",
"js/library/flickity.min.js",
"js/utils.js",
"js/d-animestore/sidebar.js",
"js/d-animestore/player.js"
],
"css": [
"css/library/awesome-notification.css",
"css/library/knopf.min.css",
"css/library/flickity.css",
"css/player.css",
"css/style.css"
],
"content_security_policy": {
"extension_pages": "script-src 'self' 'unsafe-inline';"
}
},
{
"matches": [
"https://anime.dmkt-sp.jp/animestore/ci_pc?*",
"http://anime.dmkt-sp.jp/animestore/ci_pc?*"
],
"js": [
"js/common/settings.js",
"js/library/jquery-3.6.0.js",
"js/utils.js",
"js/d-animestore/store.js"
],
"css": ["css/style.css"],
"content_security_policy": {
"extension_pages": "script-src 'self' 'unsafe-inline';"
}
},
{
"matches": [
"http://anime.dmkt-sp.jp/animestore/tp_pc*",
"https://anime.dmkt-sp.jp/animestore/tp_pc*"
],
"js": [
"js/common/settings.js",
"js/library/jquery-3.6.0.js",
"js/utils.js",
"js/d-animestore/store.js"
],
"css": [],
"content_security_policy": {
"extension_pages": "script-src 'self' 'unsafe-inline';"
}
},
{
"matches": ["https://d-party.net/anime-store/lobby/*"],
"js": [
"js/common/settings.js",
"js/library/jquery-3.6.0.js",
"js/d-party/version_check.js"
],
"css": ["css/style.css"],
"content_security_policy": {
"extension_pages": "script-src 'self' 'unsafe-inline';"
}
}
],
"web_accessible_resources": [
{
"resources": ["assets/*"],
"matches": ["https://anime.dmkt-sp.jp/*"]
}
],
"permissions": ["storage"],
"icons": {
"16": "icon/icon16.png",
"48": "icon/icon48.png",
"128": "icon/icon128.png"
},
"host_permissions": ["https://anime.dmkt-sp.jp/*", "https://d-party.net/*"],
"manifest_version": 3
}