-
-
Notifications
You must be signed in to change notification settings - Fork 36
Expand file tree
/
Copy pathmanifest.json
More file actions
45 lines (45 loc) · 985 Bytes
/
manifest.json
File metadata and controls
45 lines (45 loc) · 985 Bytes
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
{
"manifest_version": 2,
"name": "HyperChat by LiveTL",
"homepage_url": "https://livetl.app/en/hyperchat/",
"description": "YouTube chat, but it's fast and sleek!",
"version": "2.6.4",
"permissions": [
"storage"
],
"icons": {
"48": "assets/logo-48.png",
"128": "assets/logo-128.png"
},
"content_scripts": [
{
"matches": [
"https://www.youtube.com/live_chat*",
"https://www.youtube.com/live_chat_replay*"
],
"js": [
"scripts/chat-interceptor.ts",
"scripts/chat-injector.ts"
],
"css": ["stylesheets/titlebar.css"],
"all_frames": true
}
],
"background": {
"scripts": ["scripts/chat-background.ts"],
"persistent": true
},
"browser_action": {
"default_icon": {
"48": "assets/logo-48.png",
"128": "assets/logo-128.png"
}
},
"web_accessible_resources": [
"*"
],
"options_ui": {
"page": "options.html",
"open_in_tab": true
}
}