mirror of
https://github.com/Shik3i/KoalaSync.git
synced 2026-08-08 02:13:17 +00:00
79025f4d18
- Replace extension icons with new TwoPointZero design (16/32/48/96/128)
- Update manifest.base.json with 32+96 icon sizes
- Increase popup logo to 48px, website nav logo to 64px
- Generate website webp sizes (64/128/200) + AVIF variants from 600px source
- Add favicon PNGs (16x16, 32x32) + apple-touch-icon + 192x192
- Fix logo vertical centering via display:contents on picture wrappers
- Convert mockup section from inline <span lang> pairs to {{MOCK_*}} template vars
- Add MOCK translations for FR, ES, PT-BR, RU locale files
- Bump AVIF quality 70->80, speed 6->4, remove min 3KB threshold
- Regenerate www/ with build.js
46 lines
964 B
JSON
46 lines
964 B
JSON
{
|
|
"manifest_version": 3,
|
|
"name": "KoalaSync",
|
|
"version": "1.9.3",
|
|
"description": "Synchronize video playback on YouTube, Netflix, Emby, Jellyfin, and any HTML5 site in real-time with friends.",
|
|
"permissions": [
|
|
"storage",
|
|
"tabs",
|
|
"scripting",
|
|
"alarms",
|
|
"activeTab",
|
|
"notifications"
|
|
],
|
|
"host_permissions": [
|
|
"<all_urls>"
|
|
],
|
|
"action": {
|
|
"default_popup": "popup.html",
|
|
"default_icon": {
|
|
"16": "icons/icon16.png",
|
|
"32": "icons/icon32.png",
|
|
"48": "icons/icon48.png",
|
|
"96": "icons/icon96.png",
|
|
"128": "icons/icon128.png"
|
|
}
|
|
},
|
|
"content_scripts": [
|
|
{
|
|
"matches": [
|
|
"https://sync.koalastuff.net/*"
|
|
],
|
|
"js": [
|
|
"bridge.js"
|
|
],
|
|
"run_at": "document_start"
|
|
}
|
|
],
|
|
"icons": {
|
|
"16": "icons/icon16.png",
|
|
"32": "icons/icon32.png",
|
|
"48": "icons/icon48.png",
|
|
"96": "icons/icon96.png",
|
|
"128": "icons/icon128.png"
|
|
}
|
|
}
|