Twitch Error AutoRefresher

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

什麼是Twitch Error AutoRefresher?

Twitch Error AutoRefresher是由Dziango開發的Chrome擴展程式,該擴展的主要功能是“This extension will automatically refresh twitch stream whenever any error occurs.”。

擴展截圖

screenshot

下載Twitch Error AutoRefresher擴展crx文件

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

擴展使用說明

                        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                    

擴展基本資訊

名稱 Twitch Error AutoRefresher Twitch Error AutoRefresher
ID hhiipkcjbemmanpfdfdkhmfjpliniomn
官方網址 https://chromewebstore.google.com/detail/twitch-error-autorefreshe/hhiipkcjbemmanpfdfdkhmfjpliniomn
簡介 This extension will automatically refresh twitch stream whenever any error occurs.
檔案大小 15.44 KB
安裝次數 4,082
目前版本 4
更新時間 2023-06-10
上架時間 2020-05-20
評分 2.86/5 共 51 次評分
開發者 Dziango
電子郵箱 [email protected]
付費類型 free
支援的語言 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"
            ]
        }
    ]
}