Twitch Chess move filter
Hides chess moves and terms from Twitch chat
Twitch Chess move filter là gì?
Twitch Chess move filter là một tiện ích mở rộng Chrome được phát triển bởi kuijvenhovenssj, và tính năng chính của nó là "Hides chess moves and terms from Twitch chat".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Twitch Chess move filter
Tải xuống các tệp mở rộng Twitch Chess move filter dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Twitch Chess move filter |
ID | ncdnlcgchccplihcjhkcieaebhkjkjof |
URL Chính Thức | https://chromewebstore.google.com/detail/twitch-chess-move-filter/ncdnlcgchccplihcjhkcieaebhkjkjof |
Mô tả | Hides chess moves and terms from Twitch chat |
Kích Thước Tệp | 27.19 KB |
Số Lần Cài Đặt | 19 |
Phiên Bản Hiện Tại | 0.4.1 |
Cập Nhật Lần Cuối | 2022-07-10 |
Ngày Phát Hành | 2021-04-05 |
Đánh Giá | 5.00/5 Tổng số 2 Đánh Giá |
Nhà Phát Triển | kuijvenhovenssj |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/StephenKuijvenhoven/Twitch-Chess-Move-Filter |
URL Trang Trợ Giúp | https://github.com/StephenKuijvenhoven/Twitch-Chess-Move-Filter/issues |
Ngôn Ngữ Được Hỗ Trợ | 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\/*" ] } ] } |