Youtube Anti Shorts

Hide All YouTube Shorts

Co to jest Youtube Anti Shorts?

Youtube Anti Shorts to rozszerzenie Chrome opracowane przez sapondanaisriwan, a jego główną funkcją jest „Hide All YouTube Shorts”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia Youtube Anti Shorts

Pobierz pliki rozszerzeń Youtube Anti 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

                        Hide All Shorts videos on YouTube.

Source code: https://github.com/sapondanaisriwan/youtube-anti-shorts
Changelog: https://github.com/sapondanaisriwan/youtube-anti-shorts/blob/main/CHANGELOD.md
Bug Report: https://github.com/sapondanaisriwan/youtube-anti-shorts/issues                    

Podstawowe informacje o rozszerzeniu

Nazwa Youtube Anti Shorts Youtube Anti Shorts
ID lfhnlieoomhlancdfhihpopgkiekbefd
Oficjalny URL https://chrome.google.com/webstore/detail/lfhnlieoomhlancdfhihpopgkiekbefd
Opis Hide All YouTube Shorts
Rozmiar pliku 138 KB
Liczba instalacji 21
Aktualna Wersja 1.0.2
Ostatnia Aktualizacja 2023-07-20
Data Publikacji 2023-05-27
Ocena 5.00/5 Łącznie 1 Oceny
Deweloper sapondanaisriwan
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/sapondanaisriwan/youtube-anti-shorts/
Adres URL Strony Pomocy https://github.com/sapondanaisriwan/youtube-anti-shorts/issues
Obsługiwane Języki en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Youtube Anti Shorts",
    "description": "Hide All YouTube Shorts",
    "version": "1.0.2",
    "permissions": [
        "storage"
    ],
    "action": {
        "default_popup": "popup.html"
    },
    "icons": {
        "16": ".\/asset\/img\/icon-16.png",
        "32": ".\/asset\/img\/icon-32.png",
        "48": ".\/asset\/img\/icon-48.png",
        "128": ".\/asset\/img\/icon-128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ],
            "js": [
                ".\/variables.js",
                ".\/init-data.js",
                ".\/hide-shorts.js"
            ]
        }
    ]
}