Twitch Chess move filter
Hides chess moves and terms from Twitch chat
Qu'est-ce que Twitch Chess move filter ?
Twitch Chess move filter est une extension Chrome développée par kuijvenhovenssj, et sa fonction principale est "Hides chess moves and terms from Twitch chat".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Twitch Chess move filter
Téléchargez les fichiers d'extension Twitch Chess move filter au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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
Informations de Base sur l'Extension
Nom | Twitch Chess move filter |
ID | ncdnlcgchccplihcjhkcieaebhkjkjof |
URL Officiel | https://chromewebstore.google.com/detail/twitch-chess-move-filter/ncdnlcgchccplihcjhkcieaebhkjkjof |
Description | Hides chess moves and terms from Twitch chat |
Taille du Fichier | 27.19 KB |
Nombre d'Installations | 19 |
Version Actuelle | 0.4.1 |
Dernière Mise à Jour | 2022-07-10 |
Date de Publication | 2021-04-05 |
Évaluation | 5.00/5 Total 2 Évaluations |
Développeur | kuijvenhovenssj |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/StephenKuijvenhoven/Twitch-Chess-Move-Filter |
URL de la Page d'Aide | https://github.com/StephenKuijvenhoven/Twitch-Chess-Move-Filter/issues |
Langues Prises en Charge | 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\/*" ] } ] } |