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是由Unknown开发的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…”。

扩展截图

screenshot

下载Twitch Shadow Ban扩展crx文件

下载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"
    }
}