No Shorts

Redirects YouTube Shorts to YouTube videos.

Was ist No Shorts?

No Shorts ist eine Chrome-Erweiterung, die von Wock entwickelt wurde, und ihr Hauptmerkmal ist "Redirects YouTube Shorts to YouTube videos.".

Erweiterungsscreenshots

screenshot

No Shorts-Erweiterungs-CRX-Datei herunterladen

Laden Sie No 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

                        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.                    

Grundlegende Informationen zur Erweiterung

Name No Shorts No Shorts
ID gepjlgfjbeimidbimhjljdncopgelebl
Offizielle URL https://chromewebstore.google.com/detail/no-shorts/gepjlgfjbeimidbimhjljdncopgelebl
Beschreibung Redirects YouTube Shorts to YouTube videos.
Dateigröße 12.74 KB
Installationsanzahl 117
Aktuelle Version 1.0
Letztes Update 2022-10-27
Veröffentlichungsdatum 2022-10-26
Bewertung 4.20/5 Insgesamt 5 Bewertungen
Entwickler Wock
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen 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"
    }
}