Twitch player auto-reload
This extension detects video playback errors and auto refreshes the player.
Co je Twitch player auto-reload?
Twitch player auto-reload je rozšíření Chrome vyvinuté patrickvrb, a jeho hlavní funkcí je „This extension detects video playback errors and auto refreshes the player.“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření Twitch player auto-reload
Stáhněte si soubory rozšíření Twitch player auto-reload ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
This extension works by polling the screen for the exact error button every second. If so, it will emit an HTML click event to simulate user click, automatically reloading the player for the user, improving watch experience.
Základní Informace o Rozšíření
Název | Twitch player auto-reload |
ID | npnmdcgbeogghcoainjjnllinmcljmdf |
Oficiální URL | https://chromewebstore.google.com/detail/twitch-player-auto-reload/npnmdcgbeogghcoainjjnllinmcljmdf |
Popis | This extension detects video playback errors and auto refreshes the player. |
Velikost souboru | 10.84 KB |
Počet instalací | 321 |
Aktuální Verze | 2.1.0 |
Poslední Aktualizace | 2024-01-10 |
Datum Vydání | 2023-04-09 |
Hodnocení | 5.00/5 Celkem 3 Hodnocení |
Vývojář | patrickvrb |
[email protected] | |
Typ Platby | free |
Podporované Jazyky | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Twitch player auto-reload", "version": "2.1.0", "description": "This extension detects video playback errors and auto refreshes the player.", "author": "Patrick Beal", "manifest_version": 3, "action": { "default_popup": "index.html", "default_title": "Twitch auto-reload" }, "icons": { "16": "reloadIcon16.png", "32": "reloadIcon32.png", "48": "reloadIcon48.png", "128": "reloadIcon128.png" }, "content_scripts": [ { "js": [ "script.js" ], "matches": [ "https:\/\/www.twitch.tv\/*" ] } ] } |