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文件

下載Twitch player auto-reload擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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
官方網址 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\/*"
            ]
        }
    ]
}