Twitch Error AutoRefresher

This extension will automatically refresh twitch stream whenever any error occurs.

Cos'è Twitch Error AutoRefresher?

Twitch Error AutoRefresher è un'estensione di Chrome sviluppata da Dziango, e la sua funzione principale è "This extension will automatically refresh twitch stream whenever any error occurs.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Twitch Error AutoRefresher

Scarica i file di estensione Twitch Error AutoRefresher in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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                    

Informazioni di Base sull'Estensione

Nome Twitch Error AutoRefresher Twitch Error AutoRefresher
ID hhiipkcjbemmanpfdfdkhmfjpliniomn
URL Ufficiale https://chromewebstore.google.com/detail/twitch-error-autorefreshe/hhiipkcjbemmanpfdfdkhmfjpliniomn
Descrizione This extension will automatically refresh twitch stream whenever any error occurs.
Dimensione del File 15.44 KB
Conteggio Installazioni 4,082
Versione Corrente 4
Ultimo Aggiornamento 2023-06-10
Data di Pubblicazione 2020-05-20
Valutazione 2.86/5 Totale 51 Valutazioni
Sviluppatore Dziango
Email [email protected]
Tipo di Pagamento free
Lingue Supportate 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"
            ]
        }
    ]
}