Twitch Chess move filter

Hides chess moves and terms from Twitch chat

Cos'è Twitch Chess move filter?

Twitch Chess move filter è un'estensione di Chrome sviluppata da kuijvenhovenssj, e la sua funzione principale è "Hides chess moves and terms from Twitch chat".

Screenshot dell'Estensione

screenshot
screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione Twitch Chess move filter

Scarica i file di estensione Twitch Chess move filter in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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                    

Informazioni di Base sull'Estensione

Nome Twitch Chess move filter Twitch Chess move filter
ID ncdnlcgchccplihcjhkcieaebhkjkjof
URL Ufficiale https://chromewebstore.google.com/detail/twitch-chess-move-filter/ncdnlcgchccplihcjhkcieaebhkjkjof
Descrizione Hides chess moves and terms from Twitch chat
Dimensione del File 27.19 KB
Conteggio Installazioni 19
Versione Corrente 0.4.1
Ultimo Aggiornamento 2022-07-10
Data di Pubblicazione 2021-04-05
Valutazione 5.00/5 Totale 2 Valutazioni
Sviluppatore kuijvenhovenssj
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/StephenKuijvenhoven/Twitch-Chess-Move-Filter
URL della Pagina di Aiuto https://github.com/StephenKuijvenhoven/Twitch-Chess-Move-Filter/issues
Lingue Supportate 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\/*"
            ]
        }
    ]
}