Twitch Chat Blocker
Tired of spammers during some huge event on Twitch.tv? Then check this out. You can block users and MESSAGES with just one click!
Twitch Chat Blocker란 무엇입니까?
Twitch Chat Blocker은(는) Vello Vaherpuu에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Tired of spammers during some huge event on Twitch.tv? Then check this out. You can block users and MESSAGES with just one click!"입니다.
확장 프로그램 스크린샷
Twitch Chat Blocker 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
If you are tired of spammers during huge event on Twitch.tv, but enjoy reading the comments like me, then this extensions is meant for you. It will add 2 extra buttons to each chat item which allow you to block all users messages or block all messages with the same text. For example hundreds of people are spamming !get 100, with this extension you can just block this message and avoid all the spam. If you like this, please share. If you would like something to be added please let me know.
확장 프로그램 기본 정보
이름 | Twitch Chat Blocker |
ID | nbjimpahfmodcpmklbonpdpdpbgkkiof |
공식 URL | https://chromewebstore.google.com/detail/twitch-chat-blocker/nbjimpahfmodcpmklbonpdpdpbgkkiof |
설명 | Tired of spammers during some huge event on Twitch.tv? Then check this out. You can block users and MESSAGES with just one click! |
파일 크기 | 1.1 MB |
설치 횟수 | 70 |
현재 버전 | 0.0.2 |
최근 업데이트 | 2018-01-15 |
출시 날짜 | 2018-01-15 |
평점 | 2.25/5 총 4 개의 평점 |
개발자 | Vello Vaherpuu |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Twitch Chat Blocker", "description": "Tired of spammers during some huge event on Twitch.tv? Then check this out. You can block users and MESSAGES with just one click!", "version": "0.0.2", "browser_action": { "default_icon": "icon_16x16.png", "default_popup": "background\/popup.html" }, "icons": { "16": "icon_16x16.png", "48": "icon_48x48.png", "128": "icon_128x128.png" }, "permissions": [ "activeTab", "storage", "tabs" ], "background": { "scripts": [ "background\/background.js" ] }, "content_scripts": [ { "matches": [ "https:\/\/www.twitch.tv\/*" ], "css": [ "front\/css.css" ], "js": [ "deps\/fontawesome.js", "deps\/jquery.js", "front\/twitchChatScript.js" ] } ] } |