YouTube Shorts Remover

Removes shorts and upcoming videos from YouTube subscriptions, so you only see videos you can watch.

Co to jest YouTube Shorts Remover?

YouTube Shorts Remover to rozszerzenie Chrome opracowane przez http://zalwicker.dev, a jego główną funkcją jest „Removes shorts and upcoming videos from YouTube subscriptions, so you only see videos you can watch.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia YouTube Shorts Remover

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

                        Removes YouTube shorts so your subscription feed only shows long-form videos.

Also has the ability to remove upcoming videos, mixes, watched videos, and other annoying things on YouTube. I just want to watch regular videos, and now you can too!                    

Podstawowe informacje o rozszerzeniu

Nazwa YouTube Shorts Remover YouTube Shorts Remover
ID aefjgmckfgndnaopgholfhdabghaoajg
Oficjalny URL https://chrome.google.com/webstore/detail/youtube-shorts-remover/aefjgmckfgndnaopgholfhdabghaoajg
Opis Removes shorts and upcoming videos from YouTube subscriptions, so you only see videos you can watch.
Rozmiar pliku 20.47 KB
Liczba instalacji 865
Aktualna Wersja 1.2
Ostatnia Aktualizacja 2023-06-11
Data Publikacji 2022-12-06
Ocena 3.73/5 Łącznie 15 Oceny
Deweloper http://zalwicker.dev
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://www.zalwicker.dev/projects
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "YouTube Shorts Remover",
    "version": "1.2",
    "description": "Removes shorts and upcoming videos from YouTube subscriptions, so you only see videos you can watch.",
    "icons": {
        "32": "images\/noshorts32.png",
        "48": "images\/noshorts48.png",
        "128": "images\/noshorts128.png"
    },
    "content_scripts": [
        {
            "js": [
                "scripts\/content.js"
            ],
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ]
        }
    ],
    "background": {
        "service_worker": "scripts\/background.js",
        "type": "module"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "images\/*"
            ],
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ]
        }
    ],
    "action": {
        "default_popup": "views\/settings.html"
    },
    "permissions": [
        "storage"
    ]
}