ShortsBlocker - Remove Shorts from YouTube

Remove Shorts videos from Youtube

Vad är ShortsBlocker - Remove Shorts from YouTube?

ShortsBlocker - Remove Shorts from YouTube är en Chrome-tillägg utvecklad av SageMod, och dess huvudfunktion är "Remove Shorts videos from Youtube".

Tilläggsskärmbilder

screenshot
screenshot
screenshot

Ladda ner ShortsBlocker - Remove Shorts from YouTube-förlängningens CRX-fil

Ladda ner ShortsBlocker - Remove Shorts from YouTube-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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äggande Information om Tillägg

Namn ShortsBlocker - Remove Shorts from YouTube ShortsBlocker - Remove Shorts from YouTube
ID oahiolknhkbpcolgnpljehalnhblolkm
Officiell webbadress https://chromewebstore.google.com/detail/shortsblocker-remove-shor/oahiolknhkbpcolgnpljehalnhblolkm
Beskrivning Remove Shorts videos from Youtube
Filstorlek 413 KB
Antal Installationer 34,422
Aktuell Version 1.5.0
Senast Uppdaterad 2023-08-21
Publiceringsdatum 2022-08-16
Betyg 4.60/5 Totalt 176 Betyg
Utvecklare SageMod
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://ravensmove.com/shortsblocker/
Hjälpsida URL https://twitter.com/RavensMove
URL till Sekretesspolicy Sidan https://ravensmove.com/privacy-policy
Stödda Språk 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"
        }
    }
}