Reverse Youtube

Made to avoid torticollis while using a secondary screen. This extension swaps 'primary video' and 'related contents' layouts.

Reverse Youtubeとは何ですか?

Reverse Youtubeはhttps://citadelle-du-web.comによって開発されたChromeの拡張機能で、その主な機能は「Made to avoid torticollis while using a secondary screen. This extension swaps 'primary video' and 'related contents' layouts.」です。

拡張機能のスクリーンショット

screenshot

Reverse Youtube拡張機能のCRXファイルをダウンロード

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

拡張機能の使用方法

                        This extension swaps 'primary video' and 'related contents' layouts in youtube.com                    

拡張機能の基本情報

名前 Reverse Youtube Reverse Youtube
ID bbkebkkkocmacciojigkliggadljbmai
公式URL https://chromewebstore.google.com/detail/reverse-youtube/bbkebkkkocmacciojigkliggadljbmai
説明 Made to avoid torticollis while using a secondary screen. This extension swaps 'primary video' and 'related contents' layouts.
ファイルサイズ 53.5 KB
インストール数 583
現在のバージョン 1.0
最終更新日 2021-03-05
公開日 2021-03-04
評価 3.00/5 合計 2 レビュー
開発者 https://citadelle-du-web.com
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://citadelle-du-web.com/projects/reverse-youtube
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "version": "1.0",
    "name": "Reverse Youtube",
    "description": "Made to avoid torticollis while using a secondary screen. This extension swaps 'primary video' and 'related contents' layouts.",
    "permissions": [
        "storage"
    ],
    "browser_action": {
        "default_title": "Reverse Youtube",
        "default_popup": "popup.html",
        "default_icon": {
            "16": "images\/logo-16.png",
            "48": "images\/logo-48.png",
            "128": "images\/logo-128.png"
        }
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "icons": {
        "16": "images\/logo-16.png",
        "32": "images\/logo-32.png",
        "48": "images\/logo-48.png",
        "128": "images\/logo-128.png"
    }
}