Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 17 additions & 6 deletions src/manifest.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
{
"manifest_version": 3,
"{{chrome}}.manifest_version": 3,
"{{firefox}}.manifest_version": 2,
"name": "HyperChat [Improved YouTube Chat]",
"homepage_url": "https://livetl.app/hyperchat",
"description": "Improved YouTube chat with CPU/RAM optimizations, customization options, and cutting-edge features!",
Expand Down Expand Up @@ -36,24 +37,34 @@
"all_frames": true
}
],
"{{firefox}}.background": {
"scripts": ["scripts/chat-background.ts"]
},
"{{chrome}}.background": {
"service_worker": "scripts/chat-background.ts"
},
"action": {
"{{firefox}}.background": {
"scripts": ["scripts/chat-background.ts"],
"persistent": true
},
"{{chrome}}.action": {
"default_icon": {
"48": "assets/logo-48.png",
"128": "assets/logo-128.png"
}
},
"{{firefox}}.browser_action": {
"default_icon": {
"48": "assets/logo-48.png",
"128": "assets/logo-128.png"
}
},
"web_accessible_resources": [
"{{chrome}}.web_accessible_resources": [
{
"resources": [ "*" ],
"matches": [ "<all_urls>" ]
}
],
"{{firefox}}.web_accessible_resources": [
"*"
],
"options_ui": {
"page": "options.html",
"open_in_tab": true
Expand Down
Loading