-
Notifications
You must be signed in to change notification settings - Fork 62
/
manifest.json
31 lines (31 loc) · 891 Bytes
/
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
{
"name": "Live Chat Overlay",
"description": "Restyle the YouTube popout chat so you can overlay it for livestreams",
"manifest_version": 3,
"version": "0.3.9",
"homepage_url": "https://github.com/aaronpk/live-chat-overlay",
"icons": {
"128": "icons/icon-128.png"
},
"permissions": [
"storage"
],
"host_permissions": [
"https://youtube.com/*", "https://www.youtube.com/*", "https://studio.youtube.com/*"
],
"content_scripts": [{
"css": ["youtube.css"],
"js": ["jquery.js", "youtube.js"],
"all_frames": false,
"matches": ["https://youtube.com/live_chat*", "https://www.youtube.com/live_chat*", "https://studio.youtube.com/live_chat*"]
}],
"options_ui": {
"page": "settings/options.html"
},
"browser_specific_settings": {
"gecko": {
"id": "[email protected]",
"strict_min_version": "80.0"
}
}
}