No YouTube Shorts

Removes all Shorts from YouTube

Was ist No YouTube Shorts?

No YouTube Shorts ist eine Chrome-Erweiterung, die von Ben entwickelt wurde, und ihr Hauptmerkmal ist "Removes all Shorts from YouTube".

Erweiterungsscreenshots

screenshot

No YouTube Shorts-Erweiterungs-CRX-Datei herunterladen

Laden Sie No YouTube Shorts-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name No YouTube Shorts No YouTube Shorts
ID hjfkenebldkfgibelglepinlabpjfbll
Offizielle URL https://chromewebstore.google.com/detail/no-youtube-shorts/hjfkenebldkfgibelglepinlabpjfbll
Beschreibung Removes all Shorts from YouTube
Dateigröße 37.34 KB
Installationsanzahl 60,000
Aktuelle Version 0.6.2
Letztes Update 2023-09-27
Veröffentlichungsdatum 2022-03-03
Bewertung 4.31/5 Insgesamt 240 Bewertungen
Entwickler Ben
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen 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\/*"
            ]
        }
    ]
}