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
公式URL 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
Eメール [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"
            ]
        }
    ]
}