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\/*" ] } ] } |