Twitch Chess move filter

Hides chess moves and terms from Twitch chat

What is Twitch Chess move filter?

Twitch Chess move filter is a Chrome extension developed by kuijvenhovenssj, and its main feature is "Hides chess moves and terms from Twitch chat".

Extension Screenshots

screenshot
screenshot
screenshot
screenshot

Download Twitch Chess move filter Extension CRX File

Download Twitch Chess move filter extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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                    

Extension Basic Information

Name Twitch Chess move filter Twitch Chess move filter
ID ncdnlcgchccplihcjhkcieaebhkjkjof
Official URL https://chromewebstore.google.com/detail/twitch-chess-move-filter/ncdnlcgchccplihcjhkcieaebhkjkjof
Description Hides chess moves and terms from Twitch chat
File Size 27.19 KB
Installation Count 19
Current Version 0.4.1
Last Updated 2022-07-10
Publish Date 2021-04-05
Rating 5.00/5 Total 2 Ratings
Developer kuijvenhovenssj
Email [email protected]
Payment Type free
Extension Website https://github.com/StephenKuijvenhoven/Twitch-Chess-Move-Filter
Help Page URL https://github.com/StephenKuijvenhoven/Twitch-Chess-Move-Filter/issues
Supported Languages 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\/*"
            ]
        }
    ]
}