forked from ThomasTavernier/Improve-Crunchyroll
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
78 lines (78 loc) · 2.68 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
{
"manifest_version": 3,
"version": "4.6.1",
"name": "__MSG_extName__",
"description": "__MSG_extDescription__",
"author": "Thomas Tavernier <[email protected]>",
"default_locale": "en",
"icons": {
"128": "assets/icon128.png"
},
"permissions": [
"storage"
],
"action": {
"default_popup": "lib/popup/index.html"
},
"background": {
"service_worker": "lib/background/background.js"
},
"content_scripts": [
{
"matches": [
"https://static.crunchyroll.com/vilos-v2/web/vilos/player.html*"
],
"js": [
"lib/shared/chromeStorage.js",
"lib/shared/renderer.js",
"lib/shared/shortcutUtils.js",
"lib/content_scripts/player/buttons/buttons.js",
"lib/content_scripts/player/events/events.js",
"lib/content_scripts/player/fast-forward-backward/fast-forward-backward.js",
"lib/content_scripts/player/playback/playback.js",
"lib/content_scripts/player/render/render.js",
"lib/content_scripts/player/settings/settings.js",
"lib/content_scripts/player/shortcuts/shortcuts.js",
"lib/content_scripts/player/skippers/skippers.js",
"lib/content_scripts/player/main.js"
],
"css": [
"lib/content_scripts/player/buttons/buttons.css",
"lib/content_scripts/player/fast-forward-backward/fast-forward-backward.css",
"lib/content_scripts/player/playback/playback.css",
"lib/content_scripts/player/render/render.css",
"lib/content_scripts/player/settings/settings.css",
"lib/content_scripts/player/skippers/skippers.css",
"lib/content_scripts/player/main.css"
],
"all_frames": true,
"run_at": "document_start"
},
{
"matches": [
"https://beta.crunchyroll.com/*",
"https://www.crunchyroll.com/*"
],
"js": [
"lib/shared/chromeStorage.js",
"lib/shared/renderer.js",
"lib/content_scripts/website/api/api.js",
"lib/content_scripts/website/action-menu/action-menu.js",
"lib/content_scripts/website/pages/empty.js",
"lib/content_scripts/website/pages/utils.js",
"lib/content_scripts/website/pages/series/series.js",
"lib/content_scripts/website/pages/watch/watch.js",
"lib/content_scripts/website/main.js"
],
"css": [
"lib/shared/theme-color.css",
"lib/content_scripts/website/action-menu/action-menu.css",
"lib/content_scripts/website/pages/series/series.css",
"lib/content_scripts/website/pages/watch/watch.css",
"lib/content_scripts/website/pages/utils.css",
"lib/content_scripts/website/main.css"
],
"run_at": "document_idle"
}
]
}