Twitch Chess move filter
Hides chess moves and terms from Twitch chat
Τι είναι το Twitch Chess move filter;
Το Twitch Chess move filter είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον kuijvenhovenssj, και η κύρια λειτουργία του είναι "Hides chess moves and terms from Twitch chat".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Twitch Chess move filter
Λήψη αρχείων επέκτασης 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 |
ID | ncdnlcgchccplihcjhkcieaebhkjkjof |
Επίσημο URL | 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\/*" ] } ] } |