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
官方網址 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
電子郵箱 [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\/*"
            ]
        }
    ]
}