Twitch player auto-reload

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

Twitch player auto-reload란 무엇입니까?

Twitch player auto-reload은(는) patrickvrb에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This extension detects video playback errors and auto refreshes the player."입니다.

확장 프로그램 스크린샷

screenshot

Twitch player auto-reload 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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.                    

확장 프로그램 기본 정보

이름 Twitch player auto-reload Twitch player auto-reload
ID npnmdcgbeogghcoainjjnllinmcljmdf
공식 URL https://chromewebstore.google.com/detail/twitch-player-auto-reload/npnmdcgbeogghcoainjjnllinmcljmdf
설명 This extension detects video playback errors and auto refreshes the player.
파일 크기 10.84 KB
설치 횟수 321
현재 버전 2.1.0
최근 업데이트 2024-01-10
출시 날짜 2023-04-09
평점 5.00/5 총 3 개의 평점
개발자 patrickvrb
이메일 [email protected]
결제 유형 free
지원되는 언어 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\/*"
            ]
        }
    ]
}