-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmanifest.json
50 lines (47 loc) · 1.36 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
{
"manifest_version": 2,
"name": "YouCap",
"version": "0.4.1",
"default_locale": "en",
"description": "An extension for YouCap, a community-driven alternative to YouTube's community captions.",
"homepage_url": "https://youcap.video",
"icons": {
"16": "icons/logo-16.png",
"32": "icons/logo-32.png",
"64": "icons/logo-64.png",
"512": "icons/logo-512.png"
},
"page_action": {
"default_popup": "popup.html",
"default_icon": {
"16": "icons/logo-16.png",
"32": "icons/logo-32.png",
"64": "icons/logo-64.png",
"512": "icons/logo-512.png"
},
"default_title": "YouCap"
},
"background": {
"scripts": ["js/bg.js"],
"persistent": false
},
"content_scripts": [
{
"matches": ["*://www.youtube.com/watch*", "*://www.youtube.com/embed*", "*://.youtube-nocookie.com/*"],
"css": ["css/youtube.css"],
"js": ["js/ui.js", "js/captions.js", "js/youtube.js"]
}
],
"incognito": "split",
"offline_enabled": true,
"permissions": [
"declarativeContent",
"storage"
],
"version_name": "0.4.1 Build",
"web_accessible_resources": [
"js/webpage.js",
"css/youtube.css",
"icons/logo-white-128.png"
]
}