Twitch Error AutoRefresher
This extension will automatically refresh twitch stream whenever any error occurs.
¿Qué es Twitch Error AutoRefresher?
Twitch Error AutoRefresher es una extensión de Chrome desarrollada por Dziango, y su función principal es "This extension will automatically refresh twitch stream whenever any error occurs.".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Twitch Error AutoRefresher
Descarga archivos de extensión Twitch Error AutoRefresher en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
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
Información Básica de la Extensión
Nombre | Twitch Error AutoRefresher |
ID | hhiipkcjbemmanpfdfdkhmfjpliniomn |
URL Oficial | https://chromewebstore.google.com/detail/twitch-error-autorefreshe/hhiipkcjbemmanpfdfdkhmfjpliniomn |
Descripción | This extension will automatically refresh twitch stream whenever any error occurs. |
Tamaño del Archivo | 15.44 KB |
Cantidad de Instalaciones | 4,082 |
Versión Actual | 4 |
Última Actualización | 2023-06-10 |
Fecha de Publicación | 2020-05-20 |
Calificación | 2.86/5 Total de 51 Calificaciones |
Desarrollador | Dziango |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Idiomas Soportados | 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" ] } ] } |