Hide sidebar for twitch
Hide left sidebar
O que é Hide sidebar for twitch?
Hide sidebar for twitch é uma extensão do Chrome desenvolvida por shirataki, e sua principal característica é "Hide left sidebar".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Hide sidebar for twitch
Baixe arquivos de extensão Hide sidebar for twitch 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
I made this tool because the sidebar can not be hidden in the new design. Please contact me from twitter if you need anything.
Informações Básicas da Extensão
Nome | |
ID | gfjidlccjjdicmoidflmfdnlfnfckpji |
URL Oficial | https://chrome.google.com/webstore/detail/hide-sidebar-for-twitch/gfjidlccjjdicmoidflmfdnlfnfckpji |
Descrição | Hide left sidebar |
Tamanho do Arquivo | 35.2 KB |
Contagem de Instalações | 45 |
Versão Atual | 0.0.1.1 |
Última Atualização | 2018-08-04 |
Data de Publicação | 2018-08-04 |
Desenvolvedor | shirataki |
[email protected] | |
Tipo de Pagamento | free |
URL da Página de Ajuda | https://twitter.com/shirataki_nico2 |
Idiomas Suportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Hide sidebar for twitch", "version": "0.0.1.1", "description": "Hide left sidebar", "browser_action": { "default_icon": { "19": "hide-sidebar-twitch-48x48.png" } }, "icons": { "48": "hide-sidebar-twitch-48x48.png" }, "author": "@shirataki_nico2", "homepage_url": "http:\/\/fpstps.net", "content_scripts": [ { "matches": [ "http:\/\/*.twitch.tv\/*", "https:\/\/*.twitch.tv\/*" ], "js": [ "jquery-3.3.1.min.js", "contents.js" ] } ], "background": { "scripts": [ "background.js" ], "persistent": false }, "permissions": [ "tabs", "background", "http:\/\/*.twitch.tv\/", "https:\/\/*.twitch.tv\/" ] } |