Twitch Vertical
A extension to move Twitch Chat below the player
O que é Twitch Vertical?
Twitch Vertical é uma extensão do Chrome desenvolvida por Develtz Group, e sua principal característica é "A extension to move Twitch Chat below the player".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Twitch Vertical
Baixe arquivos de extensão Twitch Vertical 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
A simple extension to move the Twitch's chat below the player. I've build this in less the 2 hours just to fix a personal issue since I use a monitor in the vertical position. It's not perfect but it is opensource. Sometimes I can bug a little, just disable/renable the extension. You can contribute and help me improve this for everyone. Just check the github repository.
Informações Básicas da Extensão
Nome | Twitch Vertical |
ID | ahfcaiejokljdddiodkpgoljeaglhokb |
URL Oficial | https://chromewebstore.google.com/detail/twitch-vertical/ahfcaiejokljdddiodkpgoljeaglhokb |
Descrição | A extension to move Twitch Chat below the player |
Tamanho do Arquivo | 28.74 KB |
Contagem de Instalações | 25 |
Versão Atual | 1.0.0 |
Última Atualização | 2020-01-29 |
Data de Publicação | 2020-01-29 |
Desenvolvedor | Develtz Group |
Tipo de Pagamento | free |
Site da Extensão | https://github.com/mathewcst/twitch-vertical |
URL da Página de Ajuda | https://github.com/mathewcst/twitch-vertical/issues |
Idiomas Suportados | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Twitch Vertical", "description": "A extension to move Twitch Chat below the player", "version": "1.0.0", "manifest_version": 2, "icons": { "48": "icons\/icon_48.png", "128": "icons\/icon_128.png" }, "browser_action": { "default_icon": "icons\/icon_128.png" }, "background": { "scripts": [ "background.js" ] }, "content_scripts": [ { "matches": [ "http:\/\/*.twitch.tv\/*", "https:\/\/*.twitch.tv\/*" ], "js": [ "content.js" ], "css": [ "vertical.css" ] } ], "permissions": [ "storage" ] } |