Twitch Vertical
A extension to move Twitch Chat below the player
Wat is Twitch Vertical?
Twitch Vertical is een Chrome-extensie ontwikkeld door Develtz Group, en de belangrijkste functie is "A extension to move Twitch Chat below the player".
Extensie Screenshots
Download het CRX-bestand van de extensie Twitch Vertical
Download Twitch Vertical-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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.
Basisinformatie over de Extensie
Naam | Twitch Vertical |
ID | ahfcaiejokljdddiodkpgoljeaglhokb |
Officiële URL | https://chromewebstore.google.com/detail/twitch-vertical/ahfcaiejokljdddiodkpgoljeaglhokb |
Beschrijving | A extension to move Twitch Chat below the player |
Bestandsgrootte | 28.74 KB |
Aantal Installaties | 25 |
Huidige Versie | 1.0.0 |
Laatst Bijgewerkt | 2020-01-29 |
Publicatiedatum | 2020-01-29 |
Ontwikkelaar | Develtz Group |
Betalingswijze | free |
Extensiewebsite | https://github.com/mathewcst/twitch-vertical |
Help Pagina-URL | https://github.com/mathewcst/twitch-vertical/issues |
Ondersteunde Talen | 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" ] } |