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…」です。
拡張機能のスクリーンショット
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 |
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" } } |