Twitch Error AutoRefresher
This extension will automatically refresh twitch stream whenever any error occurs.
Co je Twitch Error AutoRefresher?
Twitch Error AutoRefresher je rozšíření Chrome vyvinuté Dziango, a jeho hlavní funkcí je „This extension will automatically refresh twitch stream whenever any error occurs.“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření Twitch Error AutoRefresher
Stáhněte si soubory rozšíření Twitch Error AutoRefresher 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 will automatically refresh twitch stream whenever any error occurs. Particularly useful when you watch a stream on another screen (another chrome window) or just listen to it from another tab. It works with error #2000, #3000, #4000 etc. This extension is an open source project. You can check the code here: https://github.com/Dziango/Twitch-Autorefresher-error-2000
Základní Informace o Rozšíření
Název | Twitch Error AutoRefresher |
ID | hhiipkcjbemmanpfdfdkhmfjpliniomn |
Oficiální URL | https://chromewebstore.google.com/detail/twitch-error-autorefreshe/hhiipkcjbemmanpfdfdkhmfjpliniomn |
Popis | This extension will automatically refresh twitch stream whenever any error occurs. |
Velikost souboru | 15.44 KB |
Počet instalací | 4,082 |
Aktuální Verze | 4 |
Poslední Aktualizace | 2023-06-10 |
Datum Vydání | 2020-05-20 |
Hodnocení | 2.86/5 Celkem 51 Hodnocení |
Vývojář | Dziango |
[email protected] | |
Typ Platby | free |
Podporované Jazyky | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Twitch Error AutoRefresher", "short_name": "TwitchReload", "version": "4", "manifest_version": 2, "homepage_url": "https:\/\/github.com\/Dziango", "description": "This extension will automatically refresh twitch stream whenever any error occurs.", "icons": { "16": "icon16.png", "32": "icon32.png", "48": "icon48.png", "128": "icon128.png" }, "page_action": { "default_icon": "icon16.png", "default_title": "Twitch Error AutoRefresher" }, "content_scripts": [ { "matches": [ "*:\/\/www.twitch.tv\/*" ], "run_at": "document_idle", "js": [ "content.js" ] } ] } |