No Shorts

Redirects YouTube Shorts to YouTube videos.

Co to jest No Shorts?

No Shorts to rozszerzenie Chrome opracowane przez Wock, a jego główną funkcją jest „Redirects YouTube Shorts to YouTube videos.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia No Shorts

Pobierz pliki rozszerzeń No Shorts w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa No Shorts No Shorts
ID gepjlgfjbeimidbimhjljdncopgelebl
Oficjalny URL https://chromewebstore.google.com/detail/no-shorts/gepjlgfjbeimidbimhjljdncopgelebl
Opis Redirects YouTube Shorts to YouTube videos.
Rozmiar pliku 12.74 KB
Liczba instalacji 117
Aktualna Wersja 1.0
Ostatnia Aktualizacja 2022-10-27
Data Publikacji 2022-10-26
Ocena 4.20/5 Łącznie 5 Oceny
Deweloper Wock
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki 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"
    }
}