Redirect Shorts

Redirects youtube shorts to the normal player

Qu'est-ce que Redirect Shorts ?

Redirect Shorts est une extension Chrome développée par manas.bejj, et sa fonction principale est "Redirects youtube shorts to the normal player".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Redirect Shorts

Téléchargez les fichiers d'extension Redirect Shorts au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Redirect Shorts Redirect Shorts
ID lncinpfgcgmphkebnbfpogkgiaadphpi
URL Officiel https://chromewebstore.google.com/detail/redirect-shorts/lncinpfgcgmphkebnbfpogkgiaadphpi
Description Redirects youtube shorts to the normal player
Taille du Fichier 32.03 KB
Nombre d'Installations 2,945
Version Actuelle 1.0
Dernière Mise à Jour 2022-03-03
Date de Publication 2022-03-03
Évaluation 4.32/5 Total 28 Évaluations
Développeur manas.bejj
Email [email protected]
Type de Paiement free
Langues Prises en Charge 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"
        }
    ]
}