Twitch Vertical

A extension to move Twitch Chat below the player

Co to jest Twitch Vertical?

Twitch Vertical to rozszerzenie Chrome opracowane przez Develtz Group, a jego główną funkcją jest „A extension to move Twitch Chat below the player”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia Twitch Vertical

Pobierz pliki rozszerzeń Twitch Vertical w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Twitch Vertical Twitch Vertical
ID ahfcaiejokljdddiodkpgoljeaglhokb
Oficjalny URL https://chromewebstore.google.com/detail/twitch-vertical/ahfcaiejokljdddiodkpgoljeaglhokb
Opis A extension to move Twitch Chat below the player
Rozmiar pliku 28.74 KB
Liczba instalacji 25
Aktualna Wersja 1.0.0
Ostatnia Aktualizacja 2020-01-29
Data Publikacji 2020-01-29
Deweloper Develtz Group
Typ Płatności free
Strona Rozszerzenia https://github.com/mathewcst/twitch-vertical
Adres URL Strony Pomocy https://github.com/mathewcst/twitch-vertical/issues
Obsługiwane Języki 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"
    ]
}