Twitch Vertical
A extension to move Twitch Chat below the player
¿Qué es Twitch Vertical?
Twitch Vertical es una extensión de Chrome desarrollada por Develtz Group, y su función principal es "A extension to move Twitch Chat below the player".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Twitch Vertical
Descarga archivos de extensión Twitch Vertical en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
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.
Información Básica de la Extensión
Nombre | Twitch Vertical |
ID | ahfcaiejokljdddiodkpgoljeaglhokb |
URL Oficial | https://chromewebstore.google.com/detail/twitch-vertical/ahfcaiejokljdddiodkpgoljeaglhokb |
Descripción | A extension to move Twitch Chat below the player |
Tamaño del Archivo | 28.74 KB |
Cantidad de Instalaciones | 25 |
Versión Actual | 1.0.0 |
Última Actualización | 2020-01-29 |
Fecha de Publicación | 2020-01-29 |
Desarrollador | Develtz Group |
Tipo de Pago | free |
Sitio Web de la Extensión | https://github.com/mathewcst/twitch-vertical |
URL de la Página de Ayuda | https://github.com/mathewcst/twitch-vertical/issues |
Idiomas Soportados | 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" ] } |