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 |
官方網址 | 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" } } |