Twitch Shadow Ban

Simple extension that let's you shadow ban people on twitch. Of course it is not banning them for real, but it simply hides their…

Twitch Shadow Banคืออะไร?

Twitch Shadow Ban เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Unknown และคุณลักษณะหลักของมันคือ "Simple extension that let's you shadow ban people on twitch. Of course it is not banning them for real, but it simply hides their…"

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

screenshot

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

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

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

                        Simple extension that let's you shadow ban people on twitch. 

Of course it is not banning them for real, but it simply hides their messages from the chat without letting them know.

The extension is still in alpha and has very phew options such as:

 - shadow ban one or more users
 - remove shadow ban from all users ( requires web-page refresh as of now)                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Twitch Shadow Ban Twitch Shadow Ban
ID lkadmebjjhhkobnppjbgdcdpmpfhiflj
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/twitch-shadow-ban/lkadmebjjhhkobnppjbgdcdpmpfhiflj
คำอธิบาย Simple extension that let's you shadow ban people on twitch. Of course it is not banning them for real, but it simply hides their…
ขนาดไฟล์ 6.62 KB
จำนวนการติดตั้ง 116
เวอร์ชันปัจจุบัน 1.0
อัปเดตครั้งล่าสุด 2018-09-02
วันที่เผยแพร่ 2018-09-02
คะแนน 3.00/5 รวมทั้งหมด 2 คะแนน
ผู้พัฒนา Unknown
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Twitch Shadow Ban",
    "version": "1.0",
    "permissions": [
        "background",
        "storage",
        "tabs",
        "https:\/\/www.twitch.tv\/*"
    ],
    "icons": {
        "16": "16_16.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.twitch.tv\/*"
            ],
            "run_at": "document_idle",
            "js": [
                "content.js"
            ]
        }
    ],
    "browser_action": {
        "default_popup": "popup.html"
    }
}