Redirect Shorts

Redirects youtube shorts to the normal player

Was ist Redirect Shorts?

Redirect Shorts ist eine Chrome-Erweiterung, die von manas.bejj entwickelt wurde, und ihr Hauptmerkmal ist "Redirects youtube shorts to the normal player".

Erweiterungsscreenshots

screenshot

Redirect Shorts-Erweiterungs-CRX-Datei herunterladen

Laden Sie Redirect Shorts-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 replaces the "/shorts/" from the url with "watch?v=" to play your shorts video on the normal player which is more user friendly on a computer.                    

Grundlegende Informationen zur Erweiterung

Name Redirect Shorts Redirect Shorts
ID lncinpfgcgmphkebnbfpogkgiaadphpi
Offizielle URL https://chromewebstore.google.com/detail/redirect-shorts/lncinpfgcgmphkebnbfpogkgiaadphpi
Beschreibung Redirects youtube shorts to the normal player
Dateigröße 32.03 KB
Installationsanzahl 2,945
Aktuelle Version 1.0
Letztes Update 2022-03-03
Veröffentlichungsdatum 2022-03-03
Bewertung 4.32/5 Insgesamt 28 Bewertungen
Entwickler manas.bejj
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Redirect Shorts",
    "version": "1.0",
    "manifest_version": 3,
    "description": "Redirects youtube shorts to the normal player",
    "icons": {
        "16": "16.png",
        "48": "48.png",
        "128": "128.png",
        "256": "256.png"
    },
    "host_permissions": [
        "*:\/\/www.youtube.com\/shorts\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/www.youtube.com\/*"
            ],
            "js": [
                "yt.js"
            ],
            "run_at": "document_start"
        }
    ]
}