Twitch Chess move filter
Hides chess moves and terms from Twitch chat
Twitch Chess move filter क्या है?
Twitch Chess move filter kuijvenhovenssj द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Hides chess moves and terms from Twitch chat"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Twitch Chess move filter एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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\/*" ] } ] } |