No Shorts

Redirects YouTube Shorts to YouTube videos.

Wat is No Shorts?

No Shorts is een Chrome-extensie ontwikkeld door Wock, en de belangrijkste functie is "Redirects YouTube Shorts to YouTube videos.".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie No Shorts

Download No 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

                        An extension that redirects YouTube short player urls to the normal YouTube player.
I created this extension for my own use, as being unable to navigate short videos irritated me, and decided to publish it.

It does one job, and only one job.
The only permission it needs is tabs, to handle YouTube onsite redirects.                    

Basisinformatie over de Extensie

Naam No Shorts No Shorts
ID gepjlgfjbeimidbimhjljdncopgelebl
Officiële URL https://chromewebstore.google.com/detail/no-shorts/gepjlgfjbeimidbimhjljdncopgelebl
Beschrijving Redirects YouTube Shorts to YouTube videos.
Bestandsgrootte 12.74 KB
Aantal Installaties 117
Huidige Versie 1.0
Laatst Bijgewerkt 2022-10-27
Publicatiedatum 2022-10-26
Beoordeling 4.20/5 Totaal 5 Beoordelingen
Ontwikkelaar Wock
E-mail [email protected]
Betalingswijze free
Ondersteunde Talen en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "No Shorts",
    "version": "1.0",
    "description": "Redirects YouTube Shorts to YouTube videos.",
    "permissions": [
        "tabs"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ],
            "js": [
                "content_script.js"
            ]
        }
    ],
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "action": {
        "default_popup": "popup.html"
    }
}