Twitch Vertical

A extension to move Twitch Chat below the player

Qu'est-ce que Twitch Vertical ?

Twitch Vertical est une extension Chrome développée par Develtz Group, et sa fonction principale est "A extension to move Twitch Chat below the player".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension Twitch Vertical

Téléchargez les fichiers d'extension Twitch Vertical au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Twitch Vertical Twitch Vertical
ID ahfcaiejokljdddiodkpgoljeaglhokb
URL Officiel https://chromewebstore.google.com/detail/twitch-vertical/ahfcaiejokljdddiodkpgoljeaglhokb
Description A extension to move Twitch Chat below the player
Taille du Fichier 28.74 KB
Nombre d'Installations 25
Version Actuelle 1.0.0
Dernière Mise à Jour 2020-01-29
Date de Publication 2020-01-29
Développeur Develtz Group
Type de Paiement free
Site Web de l'Extension https://github.com/mathewcst/twitch-vertical
URL de la Page d'Aide https://github.com/mathewcst/twitch-vertical/issues
Langues Prises en Charge 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"
    ]
}