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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Vello Vaherpuu และคุณลักษณะหลักของมันคือ "Tired of spammers during some huge event on Twitch.tv? Then check this out. You can block users and MESSAGES with just one click!"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Twitch Chat Blocker

ดาวน์โหลดไฟล์ส่วนขยาย Twitch Chat Blocker ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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 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"
            ]
        }
    ]
}