Twitch Chess move filter
Hides chess moves and terms from Twitch chat
Co je Twitch Chess move filter?
Twitch Chess move filter je rozšíření Chrome vyvinuté kuijvenhovenssj, a jeho hlavní funkcí je „Hides chess moves and terms from Twitch chat“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření Twitch Chess move filter
Stáhněte si soubory rozšíření Twitch Chess move filter ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
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
Základní Informace o Rozšíření
Název | Twitch Chess move filter |
ID | ncdnlcgchccplihcjhkcieaebhkjkjof |
Oficiální URL | https://chromewebstore.google.com/detail/twitch-chess-move-filter/ncdnlcgchccplihcjhkcieaebhkjkjof |
Popis | Hides chess moves and terms from Twitch chat |
Velikost souboru | 27.19 KB |
Počet instalací | 19 |
Aktuální Verze | 0.4.1 |
Poslední Aktualizace | 2022-07-10 |
Datum Vydání | 2021-04-05 |
Hodnocení | 5.00/5 Celkem 2 Hodnocení |
Vývojář | kuijvenhovenssj |
[email protected] | |
Typ Platby | free |
Webové stránky Rozšíření | https://github.com/StephenKuijvenhoven/Twitch-Chess-Move-Filter |
URL Stránky Nápovědy | https://github.com/StephenKuijvenhoven/Twitch-Chess-Move-Filter/issues |
Podporované Jazyky | 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\/*" ] } ] } |