Twitch Chess move filter
Hides chess moves and terms from Twitch chat
什么是Twitch Chess move filter?
Twitch Chess move filter是由kuijvenhovenssj开发的Chrome扩展程序,该扩展的主要功能是“Hides chess moves and terms from Twitch chat”。
扩展截图
下载Twitch Chess move filter扩展crx文件
下载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\/*" ] } ] } |