mirror of
https://github.com/Shik3i/KoalaSync.git
synced 2026-08-07 18:03:15 +00:00
65ad4b5c6b
Patch release for: - fix: Seek relay filtering (HLS/DASH buffering micro-seeks no longer relayed) - feat: Seek diagnostic logging in Dev tab (Filtered/Relayed with delta) - feat: Log buffer increased from 50 to 200 entries
42 lines
846 B
JSON
42 lines
846 B
JSON
{
|
|
"manifest_version": 3,
|
|
"name": "KoalaSync",
|
|
"version": "1.2.1",
|
|
"description": "Synchronize video playback across different tabs and users.",
|
|
"permissions": [
|
|
"storage",
|
|
"tabs",
|
|
"scripting",
|
|
"alarms",
|
|
"activeTab",
|
|
"notifications"
|
|
],
|
|
"host_permissions": [
|
|
"<all_urls>"
|
|
],
|
|
"action": {
|
|
"default_popup": "popup.html",
|
|
"default_icon": {
|
|
"16": "icons/icon128.png",
|
|
"48": "icons/icon128.png",
|
|
"128": "icons/icon128.png"
|
|
}
|
|
},
|
|
"background": {
|
|
"service_worker": "background.js",
|
|
"type": "module"
|
|
},
|
|
"content_scripts": [
|
|
{
|
|
"matches": ["https://koalasync.shik3i.net/*"],
|
|
"js": ["bridge.js"],
|
|
"run_at": "document_start"
|
|
}
|
|
],
|
|
"icons": {
|
|
"16": "icons/icon128.png",
|
|
"48": "icons/icon128.png",
|
|
"128": "icons/icon128.png"
|
|
}
|
|
}
|