-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmanifest.json
118 lines (103 loc) · 2.88 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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
{
"description": "Additional features for animepahe.",
"manifest_version": 2,
"name": "Animepahe Plus",
"version": "1.2.3",
"homepage_url": "https://github.com/Cyan903/Animepahe-plus",
"icons": {
"48": "icons/dark-48.png"
},
"permissions": [
"activeTab",
"storage",
"*://graphql.anilist.co/*",
"*://pahe.win/*"
],
"browser_action": {
"default_icon": "icons/dark-32.png",
"default_title": "Animepahe+",
"default_popup": "settings/conf.html"
},
"web_accessible_resources": [
"style/pages/*.css",
"style/main.css",
"img/*.svg",
"img/*.png"
],
"content_scripts": [
{
"matches": [
"*://*.animepahe.com/*",
"*://*.animepahe.org/*",
"*://*.animepahe.ru/*"
],
"run_at": "document_end",
"css": ["style/main.css"],
"js": [
"pages/index.js",
"pages/browser.js",
"pages/general/random.js",
"pages/general/fakesite.js"
]
},
{
"matches": [
"*://*.animepahe.com/",
"*://*.animepahe.org/",
"*://*.animepahe.ru/"
],
"run_at": "document_end",
"js": ["pages/info/blur.js"]
},
{
"matches": [
"*://*.animepahe.com/anime/*",
"*://*.animepahe.org/anime/*",
"*://*.animepahe.ru/anime/*"
],
"run_at": "document_end",
"css": ["style/pages/info.css"],
"js": [
"pages/info/blur.js",
"pages/info/episode.js",
"pages/info/score.js"
]
},
{
"matches": [
"*://*.animepahe.com/play/*",
"*://*.animepahe.org/play/*",
"*://*.animepahe.ru/play/*"
],
"run_at": "document_end",
"css": ["style/pages/watch.css"],
"js": [
"pages/watch/number.js",
"pages/watch/bookmark.js",
"pages/watch/resolution.js",
"pages/watch/lights.js",
"pages/watch/saved.js",
"pages/watch/direct.js"
]
},
{
"matches": [
"*://*.animepahe.com/b/*",
"*://*.animepahe.org/b/*",
"*://*.animepahe.ru/b/*"
],
"run_at": "document_end",
"js": ["pages/bookmark/_.js"]
}
],
"options_ui": {
"page": "settings/conf.html",
"open_in_tab": true
},
"browser_specific_settings": {
"gecko": {
"id": "pahe-plus@hwk",
"strict_min_version": "57.0a1"
}
}
}