No YouTube Shorts

Removes all Shorts from YouTube

Co to jest No YouTube Shorts?

No YouTube Shorts to rozszerzenie Chrome opracowane przez Ben, a jego główną funkcją jest „Removes all Shorts from YouTube”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia No YouTube Shorts

Pobierz pliki rozszerzeń No YouTube 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

                        Tired of the YouTube Shorts?
No problem, this extension has your back and removes them from the YouTube page!

New in version 0.6.2:
- Bugfixes

Bugs? Improvement ideas? Feel free to message me.                    

Podstawowe informacje o rozszerzeniu

Nazwa No YouTube Shorts No YouTube Shorts
ID hjfkenebldkfgibelglepinlabpjfbll
Oficjalny URL https://chromewebstore.google.com/detail/no-youtube-shorts/hjfkenebldkfgibelglepinlabpjfbll
Opis Removes all Shorts from YouTube
Rozmiar pliku 37.34 KB
Liczba instalacji 60,000
Aktualna Wersja 0.6.2
Ostatnia Aktualizacja 2023-09-27
Data Publikacji 2022-03-03
Ocena 4.31/5 Łącznie 240 Oceny
Deweloper Ben
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "No YouTube Shorts",
    "description": "Removes all Shorts from YouTube",
    "version": "0.6.2",
    "action": {
        "default_popup": "popup.html",
        "default_title": "No YouTube Shorts"
    },
    "manifest_version": 3,
    "default_locale": "en",
    "permissions": [
        "declarativeContent",
        "storage",
        "tabs",
        "management"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ],
            "js": [
                "no-youtube-shorts-content-script.js"
            ],
            "run_at": "document_start",
            "all_frames": true
        }
    ],
    "background": {
        "service_worker": "no-youtube-shorts-background-script.js"
    },
    "icons": {
        "48": "assets\/img\/logo48.png",
        "128": "assets\/img\/logo128.png"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "assets\/no-youtube-shorts.css"
            ],
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ]
        }
    ]
}