-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmanifest.json
99 lines (99 loc) · 3.11 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
{
"name": "__MSG_appTitle__",
"version": "1.1.1",
"description": "__MSG_appDesc__",
"default_locale": "pt_BR",
"icons": {
"16": "./icons/ac16.png",
"32": "./icons/ac32.png",
"48": "./icons/ac48.png",
"128": "./icons/ac128.png"
},
"permissions": ["storage"],
"action": {
"default_title": "__MSG_appTitle__",
"default_icon": "./icons/ac48.png",
"default_popup": "./popupViews/homepageView/homepage.html"
},
"externally_connectable": {
"matches": [
"*://*.primevideo.com/*",
"*://*.viki.com/*",
"*://mubi.com/*",
"*://*.anitube.site/*",
"*://*.youtube.com/*",
"*://*.crunchyroll.com/*",
"*://*.vimeo.com/*",
"*://*.netflix.com/*",
"*://tv.apple.com/*",
"*://goyabu.com/*",
"*://4anime.to/*",
"*://globoplay.globo.com/*"
]
},
"content_scripts": [
{
"js": [
"./libs/socket.io.js",
"./utils/workerUtils.js",
"./utils/socket.js",
"./content/content.js"
],
"matches": [
"*://*.primevideo.com/*",
"*://*.viki.com/*",
"*://mubi.com/*",
"*://*.anitube.site/*",
"*://*.youtube.com/*",
"*://*.crunchyroll.com/*",
"*://*.vimeo.com/*",
"*://*.netflix.com/*",
"*://tv.apple.com/*",
"*://goyabu.com/*",
"*://4anime.to/*",
"*://globoplay.globo.com/*"
],
"run_at": "document_end"
}
],
"background": {
"service_worker": "./serviceWorker.js"
},
"web_accessible_resources": [
{
"resources": [
"content/htmlVideoController.js",
"content/youtube.js",
"content/anitube.js",
"content/netflix.js",
"content/appletv.js",
"content/crunchyroll.js",
"content/disney.js",
"content/globoplay.js",
"content/hulu.js",
"content/primevideo.js",
"content/telecine.js",
"content/viki.js",
"content/mubi.js",
"content/vimeo.js",
"content/goyabu.js",
"content/4anime.js"
],
"matches": [
"*://*.primevideo.com/*",
"*://*.viki.com/*",
"*://mubi.com/*",
"*://*.anitube.site/*",
"*://*.youtube.com/*",
"*://*.crunchyroll.com/*",
"*://*.vimeo.com/*",
"*://*.netflix.com/*",
"*://tv.apple.com/*",
"*://goyabu.com/*",
"*://4anime.to/*",
"*://globoplay.globo.com/*"
]
}
],
"manifest_version": 3
}