Reverse Youtube

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

Was ist Reverse Youtube?

Reverse Youtube ist eine Chrome-Erweiterung, die von https://citadelle-du-web.com entwickelt wurde, und ihr Hauptmerkmal ist "Made to avoid torticollis while using a secondary screen. This extension swaps 'primary video' and 'related contents' layouts.".

Erweiterungsscreenshots

screenshot

Reverse Youtube-Erweiterungs-CRX-Datei herunterladen

Laden Sie Reverse Youtube-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

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

Grundlegende Informationen zur Erweiterung

Name Reverse Youtube Reverse Youtube
ID bbkebkkkocmacciojigkliggadljbmai
Offizielle URL https://chromewebstore.google.com/detail/reverse-youtube/bbkebkkkocmacciojigkliggadljbmai
Beschreibung Made to avoid torticollis while using a secondary screen. This extension swaps 'primary video' and 'related contents' layouts.
Dateigröße 53.5 KB
Installationsanzahl 583
Aktuelle Version 1.0
Letztes Update 2021-03-05
Veröffentlichungsdatum 2021-03-04
Bewertung 3.00/5 Insgesamt 2 Bewertungen
Entwickler https://citadelle-du-web.com
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://citadelle-du-web.com/projects/reverse-youtube
Unterstützte Sprachen 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"
    }
}