forked from aaronpk/live-chat-overlay
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
32 lines (32 loc) · 906 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
32
{
"name": "Live Chat Overlay",
"description": "Restyle the YouTube popout chat so you can overlay it for livestreams",
"manifest_version": 3,
"version": "0.4.26",
"homepage_url": "https://github.com/aaronpk/live-chat-overlay",
"icons": {
"128": "icons/icon-128.png"
},
"permissions": [
"storage",
"webRequest",
"activeTab"
],
"host_permissions": [
"https://youtube.com/*",
"https://www.youtube.com/*",
"https://studio.youtube.com/*",
"http://localhost:*/*",
"http://127.0.0.1:*/*",
"ws://localhost:*/*"
],
"content_scripts": [{
"css": ["youtube.css"],
"js": ["jquery.js", "youtube.js"],
"all_frames": true,
"matches": ["https://youtube.com/live_chat*", "https://www.youtube.com/live_chat*", "https://studio.youtube.com/live_chat*", "http://localhost:*/show*"]
}],
"options_ui": {
"page": "settings/options.html"
}
}