Twitch player auto-reload

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

Co to jest Twitch player auto-reload?

Twitch player auto-reload to rozszerzenie Chrome opracowane przez patrickvrb, a jego główną funkcją jest „This extension detects video playback errors and auto refreshes the player.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Twitch player auto-reload

Pobierz pliki rozszerzeń Twitch player auto-reload w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Twitch player auto-reload Twitch player auto-reload
ID npnmdcgbeogghcoainjjnllinmcljmdf
Oficjalny URL https://chromewebstore.google.com/detail/twitch-player-auto-reload/npnmdcgbeogghcoainjjnllinmcljmdf
Opis This extension detects video playback errors and auto refreshes the player.
Rozmiar pliku 10.84 KB
Liczba instalacji 321
Aktualna Wersja 2.1.0
Ostatnia Aktualizacja 2024-01-10
Data Publikacji 2023-04-09
Ocena 5.00/5 Łącznie 3 Oceny
Deweloper patrickvrb
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki 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\/*"
            ]
        }
    ]
}