YouTube Shorts Remover

Removes shorts and upcoming videos from YouTube subscriptions, so you only see videos you can watch.

What is YouTube Shorts Remover?

YouTube Shorts Remover is a Chrome extension developed by http://zalwicker.dev, and its main feature is "Removes shorts and upcoming videos from YouTube subscriptions, so you only see videos you can watch.".

Extension Screenshots

screenshot
screenshot

Download YouTube Shorts Remover Extension CRX File

Download YouTube Shorts Remover extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        Removes YouTube shorts so your subscription feed only shows long-form videos.

Also has the ability to remove upcoming videos, mixes, watched videos, and other annoying things on YouTube. I just want to watch regular videos, and now you can too!                    

Extension Basic Information

Name YouTube Shorts Remover YouTube Shorts Remover
ID aefjgmckfgndnaopgholfhdabghaoajg
Official URL https://chrome.google.com/webstore/detail/youtube-shorts-remover/aefjgmckfgndnaopgholfhdabghaoajg
Description Removes shorts and upcoming videos from YouTube subscriptions, so you only see videos you can watch.
File Size 20.47 KB
Installation Count 865
Current Version 1.2
Last Updated 2023-06-11
Publish Date 2022-12-06
Rating 3.73/5 Total 15 Ratings
Developer http://zalwicker.dev
Email [email protected]
Payment Type free
Extension Website https://www.zalwicker.dev/projects
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "YouTube Shorts Remover",
    "version": "1.2",
    "description": "Removes shorts and upcoming videos from YouTube subscriptions, so you only see videos you can watch.",
    "icons": {
        "32": "images\/noshorts32.png",
        "48": "images\/noshorts48.png",
        "128": "images\/noshorts128.png"
    },
    "content_scripts": [
        {
            "js": [
                "scripts\/content.js"
            ],
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ]
        }
    ],
    "background": {
        "service_worker": "scripts\/background.js",
        "type": "module"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "images\/*"
            ],
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ]
        }
    ],
    "action": {
        "default_popup": "views\/settings.html"
    },
    "permissions": [
        "storage"
    ]
}