No YouTube Shorts

Removes all Shorts from YouTube

Co je No YouTube Shorts?

No YouTube Shorts je rozšíření Chrome vyvinuté Ben, a jeho hlavní funkcí je „Removes all Shorts from YouTube“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření No YouTube Shorts

Stáhněte si soubory rozšíření No YouTube Shorts ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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.                    

Základní Informace o Rozšíření

Název No YouTube Shorts No YouTube Shorts
ID hjfkenebldkfgibelglepinlabpjfbll
Oficiální URL https://chromewebstore.google.com/detail/no-youtube-shorts/hjfkenebldkfgibelglepinlabpjfbll
Popis Removes all Shorts from YouTube
Velikost souboru 37.34 KB
Počet instalací 60,000
Aktuální Verze 0.6.2
Poslední Aktualizace 2023-09-27
Datum Vydání 2022-03-03
Hodnocení 4.31/5 Celkem 240 Hodnocení
Vývojář Ben
E-mail [email protected]
Typ Platby free
Podporované Jazyky 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\/*"
            ]
        }
    ]
}