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 مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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 |
عنوان صفحة المساعدة | 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\/*" ] } ] } |