-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
49 lines (49 loc) · 1.38 KB
/
Copy pathmanifest.json
File metadata and controls
49 lines (49 loc) · 1.38 KB
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
{
"manifest_version": 3,
"name": "Kick AutoSend",
"version": "1.1",
"description": "Advanced Kick chat automation with voice rotation, message repeater, and smart reply features for streamers, moderators and viewers",
"permissions": ["storage", "activeTab"],
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'none'; frame-ancestors 'none';"
},
"host_permissions": [
"https://kick.com/*",
"https://*.kick.com/*"
],
"action": {
"default_title": "Kick AutoSend",
"default_popup": "popup.html",
"default_icon": {
"16": "assets/logo.png",
"32": "assets/logo.png",
"48": "assets/logo.png",
"128": "assets/logo.png"
}
},
"icons": {
"16": "assets/logo.png",
"32": "assets/logo.png",
"48": "assets/logo.png",
"128": "assets/logo.png"
},
"web_accessible_resources": [
{
"resources": ["assets/fnv.jpg", "assets/logo.png"],
"matches": ["https://kick.com/*", "https://*.kick.com/*"]
}
],
"background": {
"service_worker": "service_worker.js"
},
"content_scripts": [
{
"matches": [
"https://kick.com/*",
"https://*.kick.com/*"
],
"js": ["content.js"],
"run_at": "document_idle"
}
]
}