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…
O que é Twitch Shadow Ban?
Twitch Shadow Ban é uma extensão do Chrome desenvolvida por Unknown, e sua principal característica é "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…".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Twitch Shadow Ban
Baixe arquivos de extensão Twitch Shadow Ban no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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)
Informações Básicas da Extensão
Nome | Twitch Shadow Ban |
ID | lkadmebjjhhkobnppjbgdcdpmpfhiflj |
URL Oficial | https://chromewebstore.google.com/detail/twitch-shadow-ban/lkadmebjjhhkobnppjbgdcdpmpfhiflj |
Descrição | 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… |
Tamanho do Arquivo | 6.62 KB |
Contagem de Instalações | 116 |
Versão Atual | 1.0 |
Última Atualização | 2018-09-02 |
Data de Publicação | 2018-09-02 |
Classificação | 3.00/5 Total de 2 Avaliações |
Desenvolvedor | Unknown |
Tipo de Pagamento | free |
Idiomas Suportados | 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" } } |