Twitch Vertical

A extension to move Twitch Chat below the player

What is Twitch Vertical?

Twitch Vertical is a Chrome extension developed by Develtz Group, and its main feature is "A extension to move Twitch Chat below the player".

Extension Screenshots

screenshot
screenshot

Download Twitch Vertical Extension CRX File

Download Twitch Vertical extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Twitch Vertical Twitch Vertical
ID ahfcaiejokljdddiodkpgoljeaglhokb
Official URL https://chromewebstore.google.com/detail/twitch-vertical/ahfcaiejokljdddiodkpgoljeaglhokb
Description A extension to move Twitch Chat below the player
File Size 28.74 KB
Installation Count 25
Current Version 1.0.0
Last Updated 2020-01-29
Publish Date 2020-01-29
Developer Develtz Group
Payment Type free
Extension Website https://github.com/mathewcst/twitch-vertical
Help Page URL https://github.com/mathewcst/twitch-vertical/issues
Supported Languages 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"
    ]
}