Reverse Youtube

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

What is Reverse Youtube?

Reverse Youtube is a Chrome extension developed by https://citadelle-du-web.com, and its main feature is "Made to avoid torticollis while using a secondary screen. This extension swaps 'primary video' and 'related contents' layouts.".

Extension Screenshots

screenshot

Download Reverse Youtube Extension CRX File

Download Reverse Youtube 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

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

Extension Basic Information

Name Reverse Youtube Reverse Youtube
ID bbkebkkkocmacciojigkliggadljbmai
Official URL https://chromewebstore.google.com/detail/reverse-youtube/bbkebkkkocmacciojigkliggadljbmai
Description Made to avoid torticollis while using a secondary screen. This extension swaps 'primary video' and 'related contents' layouts.
File Size 53.5 KB
Installation Count 583
Current Version 1.0
Last Updated 2021-03-05
Publish Date 2021-03-04
Rating 3.00/5 Total 2 Ratings
Developer https://citadelle-du-web.com
Email [email protected]
Payment Type free
Extension Website https://citadelle-du-web.com/projects/reverse-youtube
Supported Languages 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"
    }
}