Twitch Vertical

A extension to move Twitch Chat below the player

Twitch Vertical란 무엇입니까?

Twitch Vertical은(는) Develtz Group에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A extension to move Twitch Chat below the player"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Twitch Vertical 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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.                    

확장 프로그램 기본 정보

이름 Twitch Vertical Twitch Vertical
ID ahfcaiejokljdddiodkpgoljeaglhokb
공식 URL https://chromewebstore.google.com/detail/twitch-vertical/ahfcaiejokljdddiodkpgoljeaglhokb
설명 A extension to move Twitch Chat below the player
파일 크기 28.74 KB
설치 횟수 25
현재 버전 1.0.0
최근 업데이트 2020-01-29
출시 날짜 2020-01-29
개발자 Develtz Group
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/mathewcst/twitch-vertical
도움말 페이지 URL https://github.com/mathewcst/twitch-vertical/issues
지원되는 언어 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"
    ]
}