ShortsBlocker - Remove Shorts from YouTube

Remove Shorts videos from Youtube

Hvad er ShortsBlocker - Remove Shorts from YouTube?

ShortsBlocker - Remove Shorts from YouTube er en Chrome-udvidelse udviklet af SageMod, og dens hovedfunktion er "Remove Shorts videos from Youtube".

Udvidelsesskærmbilleder

screenshot
screenshot
screenshot

Download ShortsBlocker - Remove Shorts from YouTube-udvidelses-CRX-fil

Download ShortsBlocker - Remove Shorts from YouTube-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        Remove All Shorts Videos from YouTube.

This extension removes all the shorts videos from the YouTube homepage, tabs, search, explore and also subscriptions.

# Update 1.5.0 - August 19, 2023
- Optimized the algorithm that detects and removes YouTube Shorts from feeds to work faster. This should result in Shorts being removed more quickly after being identified.
- Refactored the core code to improve overall performance and reduce memory usage.

Request new features or found a bug? Tweet at https://twitter.com/ravensmove

Buy Me A Coffee: https://www.buymeacoffee.com/ravensmove

Love the extension? Give us a rating!

FAQ:
1. What information do you collect?
We do not collect any personal data.

Stay in touch:
Follow us on Twitter: https://twitter.com/ravensmove                    

Grundlæggende oplysninger om udvidelsen

Navn ShortsBlocker - Remove Shorts from YouTube ShortsBlocker - Remove Shorts from YouTube
ID oahiolknhkbpcolgnpljehalnhblolkm
Officiel URL https://chromewebstore.google.com/detail/shortsblocker-remove-shor/oahiolknhkbpcolgnpljehalnhblolkm
Beskrivelse Remove Shorts videos from Youtube
Filstørrelse 413 KB
Antal Installationer 34,422
Nuværende Version 1.5.0
Senest Opdateret 2023-08-21
Udgivelsesdato 2022-08-16
Bedømmelse 4.60/5 Samlet 176 Bedømmelser
Udvikler SageMod
E-mail [email protected]
Betalingsmetode free
Udvidelseswebsted https://ravensmove.com/shortsblocker/
Hjælpeside-URL https://twitter.com/RavensMove
URL til Fortrolighedspolitik Side https://ravensmove.com/privacy-policy
Understøttede Sprog en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "ShortsBlocker - Remove Shorts from YouTube",
    "description": "Remove Shorts videos from Youtube",
    "version": "1.5.0",
    "manifest_version": 3,
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "\/assets\/index.js"
            ],
            "css": [
                "styles.css"
            ],
            "run_at": "document_end"
        }
    ],
    "action": {
        "default_title": "ShortsBlocker - Remove Shorts from YouTube",
        "default_popup": "popup.html",
        "default_icon": {
            "16": "icons\/icon16.png",
            "48": "icons\/icon48.png",
            "128": "icons\/icon128.png"
        }
    }
}