-
Notifications
You must be signed in to change notification settings - Fork 1
/
manifest.json
44 lines (44 loc) · 1.31 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
{
"manifest_version": 2,
"name": "Anime Watch Parties",
"description": "A cross-platform extension that synchronizes videos on major anime websites.",
"version": "0.4.10",
"author": "Dragicafit",
"icons": {
"48": "src/icons/activate.svg",
"96": "src/icons/icon.svg"
},
"homepage_url": "https://animewatchparties.com",
"permissions": [
"https://www.wakanim.tv/*/episode/*",
"https://www.crunchyroll.com/*/*",
"https://static.crunchyroll.com/*",
"https://beta.crunchyroll.com/*/watch/*",
"https://api.crunchyroll.com/*",
"https://www.funimation.com/*/shows/*",
"https://www.funimation.com/v/*",
"https://animedigitalnetwork.fr/video/*",
"https://awp.moe/*",
"activeTab",
"tabs",
"webNavigation",
"cookies",
"storage"
],
"optional_permissions": ["https://animationdigitalnetwork.fr/video/*"],
"background": {
"scripts": ["src/background-scripts/background.bundle.js"]
},
"browser_action": {
"default_title": "Anime Watch Parties",
"default_popup": "src/popup/popup.html",
"default_icon": {
"16": "src/icons/desactivate.svg",
"32": "src/icons/desactivate.svg"
}
},
"web_accessible_resources": [
"src/web-accessible-resources/js/player.bundle.js",
"src/web-accessible-resources/chat/js/chat.bundle.js"
]
}