Twitch Error AutoRefresher

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

Qu'est-ce que Twitch Error AutoRefresher ?

Twitch Error AutoRefresher est une extension Chrome développée par Dziango, et sa fonction principale est "This extension will automatically refresh twitch stream whenever any error occurs.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Twitch Error AutoRefresher

Téléchargez les fichiers d'extension Twitch Error AutoRefresher au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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                    

Informations de Base sur l'Extension

Nom Twitch Error AutoRefresher Twitch Error AutoRefresher
ID hhiipkcjbemmanpfdfdkhmfjpliniomn
URL Officiel https://chromewebstore.google.com/detail/twitch-error-autorefreshe/hhiipkcjbemmanpfdfdkhmfjpliniomn
Description This extension will automatically refresh twitch stream whenever any error occurs.
Taille du Fichier 15.44 KB
Nombre d'Installations 4,082
Version Actuelle 4
Dernière Mise à Jour 2023-06-10
Date de Publication 2020-05-20
Évaluation 2.86/5 Total 51 Évaluations
Développeur Dziango
Email [email protected]
Type de Paiement free
Langues Prises en Charge 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"
            ]
        }
    ]
}