mirror of
https://github.com/Shik3i/KoalaSync.git
synced 2026-08-04 00:17:42 +00:00
d6665fe0f5
- Copy Logs button now generates full Markdown debug report (system, tab, connection, video, history, logs)
- Enhanced Dev tab with 20+ video state fields (network, dimensions, error, shadow DOM, platform detection)
- Platform auto-detection (YouTube, Netflix, Twitch, Prime Video, Disney+, Hulu, HBO, Vimeo, Dailymotion)
- 'No video found' diagnostic mode with hints
- Convert mockup from inline <span lang> to {{MOCK_*}} template vars (all 6 languages)
- New TwoPointZero branding: icons (16/32/48/96/128), favicons (PNG 16/32 + apple-touch + 192)
- Fix logo vertical centering via display:contents on picture wrappers
- Increase popup logo to 48px, website nav logo to 64px
- AVIF quality 70->80, speed 6->4, remove min 3KB threshold
- Add 32+96 icon sizes to manifest
- Remove amazon. from tab blacklist (unblocks Prime Video)
- Update TESTED_SERVICES.md: mark Prime Video as non-functional
- Update CONTRIBUTING.md with Copy Debug Report workflow
2.7 KiB
2.7 KiB
Tested Streaming Services
This document tracks which streaming platforms and media servers have been tested with KoalaSync.
| Service | Sync Works | Media Title | Episode Auto-Sync | Notes |
|---|---|---|---|---|
| YouTube | ✅ Full | ✅ Full | ❌ | Best-in-class support. Native player API, reliable title detection. |
| Twitch | ✅ Full | ✅ Full | ❌ | Live-only platform. Tested on regular streams. |
| Netflix | ✅ Full | ⚠️ Hidden | ⚠️ Manual | Sync works perfectly, but DRM prevents media title detection. Episode transitions may require manual lobby. |
| Emby | ✅ Full | ✅ Full | ✅ Full | Self-hosted. Full HTML5 player access. |
| Jellyfin | ✅ Full | ✅ Full | ✅ Full | Self-hosted. Full HTML5 player access. |
| Plex | Not tested | Not tested | Not tested | Community reports indicate compatibility via HTML5 player mode. |
| Disney+ | Not tested | Not tested | Not tested | Widevine DRM may restrict title detection similar to Netflix. |
| Prime Video | ❌ None | ❌ None | ❌ | Extension cannot detect video elements. Play/Pause do not work. Media title detection fails. DRM and custom player prevent script access. |
| HBO Max / Max | Not tested | Not tested | Not tested | — |
| Crunchyroll | Not tested | Not tested | Not tested | — |
| Vimeo | Not tested | Not tested | Not tested | — |
| Dailymotion | Not tested | Not tested | Not tested | — |
| ARD / ZDF Mediathek | Not tested | Not tested | Not tested | German public broadcasters. HTML5 players expected to work. |
Legend
| Symbol | Meaning |
|---|---|
| ✅ Full | Works without limitations. |
| ⚠️ Partial | Works with caveats (see Notes). |
| ❌ N/A | Not applicable or not supported. |
How to Contribute
Tested a service that's not listed? Found different behavior than documented?
- Test KoalaSync on the service with two browser profiles
- Use the extension's Dev tab to check
readyState,currentTime, and media title - Open a GitHub issue or PR updating this table
Technical Background
KoalaSync works on any website with a standard HTML5 <video> element that allows script injection.
Limited functionality on certain platforms is typically caused by:
- DRM/Copy Protection (e.g., Widevine on Netflix, Disney+) which restricts access to media metadata like title and playback state
- Shadow DOM encapsulation that hides video elements from content scripts
- Strict Content Security Policies (CSP) that block script injection
Websites with heavily obfuscated custom players (e.g., complex Shadow DOM, iframe isolation) may require platform-specific workarounds in content.js.