Twitch player auto-reload

This extension detects video playback errors and auto refreshes the player.

Cos'è Twitch player auto-reload?

Twitch player auto-reload è un'estensione di Chrome sviluppata da patrickvrb, e la sua funzione principale è "This extension detects video playback errors and auto refreshes the player.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Twitch player auto-reload

Scarica i file di estensione Twitch player auto-reload 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 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.                    

Informazioni di Base sull'Estensione

Nome Twitch player auto-reload Twitch player auto-reload
ID npnmdcgbeogghcoainjjnllinmcljmdf
URL Ufficiale https://chromewebstore.google.com/detail/twitch-player-auto-reload/npnmdcgbeogghcoainjjnllinmcljmdf
Descrizione This extension detects video playback errors and auto refreshes the player.
Dimensione del File 10.84 KB
Conteggio Installazioni 321
Versione Corrente 2.1.0
Ultimo Aggiornamento 2024-01-10
Data di Pubblicazione 2023-04-09
Valutazione 5.00/5 Totale 3 Valutazioni
Sviluppatore patrickvrb
Email [email protected]
Tipo di Pagamento free
Lingue Supportate 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\/*"
            ]
        }
    ]
}