YouTube Shorts Remover

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

Что такое YouTube Shorts Remover?

YouTube Shorts Remover - это расширение Chrome, разработанное http://zalwicker.dev, и его основная функция - "Removes shorts and upcoming videos from YouTube subscriptions, so you only see videos you can watch.".

Снимки экрана расширения

screenshot
screenshot

Скачать файл CRX расширения YouTube Shorts Remover

Скачайте файлы расширений YouTube Shorts Remover в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        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!                    

Основная информация о расширении

Название YouTube Shorts Remover YouTube Shorts Remover
ID aefjgmckfgndnaopgholfhdabghaoajg
Официальный URL https://chrome.google.com/webstore/detail/youtube-shorts-remover/aefjgmckfgndnaopgholfhdabghaoajg
Описание Removes shorts and upcoming videos from YouTube subscriptions, so you only see videos you can watch.
Размер файла 20.47 KB
Количество установок 865
Текущая Версия 1.2
Последнее Обновление 2023-06-11
Дата публикации 2022-12-06
Рейтинг 3.73/5 Всего 15 оценок
Разработчик http://zalwicker.dev
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://www.zalwicker.dev/projects
Поддерживаемые языки 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"
    ]
}