Redirect Shorts

Redirects youtube shorts to the normal player

Wat is Redirect Shorts?

Redirect Shorts is een Chrome-extensie ontwikkeld door manas.bejj, en de belangrijkste functie is "Redirects youtube shorts to the normal player".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Redirect Shorts

Download Redirect Shorts-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Redirect Shorts Redirect Shorts
ID lncinpfgcgmphkebnbfpogkgiaadphpi
Officiële URL https://chromewebstore.google.com/detail/redirect-shorts/lncinpfgcgmphkebnbfpogkgiaadphpi
Beschrijving Redirects youtube shorts to the normal player
Bestandsgrootte 32.03 KB
Aantal Installaties 2,945
Huidige Versie 1.0
Laatst Bijgewerkt 2022-03-03
Publicatiedatum 2022-03-03
Beoordeling 4.32/5 Totaal 28 Beoordelingen
Ontwikkelaar manas.bejj
E-mail [email protected]
Betalingswijze free
Ondersteunde Talen 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"
        }
    ]
}