Youtube Anti Shorts

Hide All YouTube Shorts

Что такое Youtube Anti Shorts?

Youtube Anti Shorts - это расширение Chrome, разработанное sapondanaisriwan, и его основная функция - "Hide All YouTube Shorts".

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

screenshot
screenshot

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

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

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

                        Hide All Shorts videos on YouTube.

Source code: https://github.com/sapondanaisriwan/youtube-anti-shorts
Changelog: https://github.com/sapondanaisriwan/youtube-anti-shorts/blob/main/CHANGELOD.md
Bug Report: https://github.com/sapondanaisriwan/youtube-anti-shorts/issues                    

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

Название Youtube Anti Shorts Youtube Anti Shorts
ID lfhnlieoomhlancdfhihpopgkiekbefd
Официальный URL https://chrome.google.com/webstore/detail/lfhnlieoomhlancdfhihpopgkiekbefd
Описание Hide All YouTube Shorts
Размер файла 138 KB
Количество установок 21
Текущая Версия 1.0.2
Последнее Обновление 2023-07-20
Дата публикации 2023-05-27
Рейтинг 5.00/5 Всего 1 оценок
Разработчик sapondanaisriwan
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://github.com/sapondanaisriwan/youtube-anti-shorts/
URL страницы помощи https://github.com/sapondanaisriwan/youtube-anti-shorts/issues
Поддерживаемые языки en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Youtube Anti Shorts",
    "description": "Hide All YouTube Shorts",
    "version": "1.0.2",
    "permissions": [
        "storage"
    ],
    "action": {
        "default_popup": "popup.html"
    },
    "icons": {
        "16": ".\/asset\/img\/icon-16.png",
        "32": ".\/asset\/img\/icon-32.png",
        "48": ".\/asset\/img\/icon-48.png",
        "128": ".\/asset\/img\/icon-128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ],
            "js": [
                ".\/variables.js",
                ".\/init-data.js",
                ".\/hide-shorts.js"
            ]
        }
    ]
}