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ファイルをダウンロード

Twitch Vertical拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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"
    ]
}