Twitch Chess move filter

Hides chess moves and terms from Twitch chat

Twitch Chess move filterとは何ですか?

Twitch Chess move filterはkuijvenhovenssjによって開発されたChromeの拡張機能で、その主な機能は「Hides chess moves and terms from Twitch chat」です。

拡張機能のスクリーンショット

screenshot
screenshot
screenshot
screenshot

Twitch Chess move filter拡張機能のCRXファイルをダウンロード

Twitch Chess move filter拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        An extension to hide chess moves and terms from Twitch chat. Useful for Chess streamers that don't want to get spoiled by their viewers. 

I decided to create this extension when I wanted to stream my chess games on Twitch.tv , but noticed people tend to post moves in the chat. This extension allows people to discuss the current position without ruining it for the streamer or anyone else with this plugin enabled. 

For issues or more information please visit the GitHub page: https://github.com/StephenKuijvenhoven/Twitch-Chess-Move-Filter                    

拡張機能の基本情報

名前 Twitch Chess move filter Twitch Chess move filter
ID ncdnlcgchccplihcjhkcieaebhkjkjof
公式URL https://chromewebstore.google.com/detail/twitch-chess-move-filter/ncdnlcgchccplihcjhkcieaebhkjkjof
説明 Hides chess moves and terms from Twitch chat
ファイルサイズ 27.19 KB
インストール数 19
現在のバージョン 0.4.1
最終更新日 2022-07-10
公開日 2021-04-05
評価 5.00/5 合計 2 レビュー
開発者 kuijvenhovenssj
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://github.com/StephenKuijvenhoven/Twitch-Chess-Move-Filter
ヘルプページのURL https://github.com/StephenKuijvenhoven/Twitch-Chess-Move-Filter/issues
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Twitch Chess move filter",
    "version": "0.4.1",
    "description": "Hides chess moves and terms from Twitch chat",
    "action": {
        "default_popup": "options\/options.html"
    },
    "permissions": [
        "storage"
    ],
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "content_scripts": [
        {
            "js": [
                "content.js"
            ],
            "css": [
                "spoiler.css"
            ],
            "matches": [
                "https:\/\/www.twitch.tv\/*"
            ]
        }
    ]
}