Disable Youtube Shorts Layout

Disables youtube short layout on desktop (not the videos themselves).

Что такое Disable Youtube Shorts Layout?

Disable Youtube Shorts Layout - это расширение Chrome, разработанное tukars, и его основная функция - "Disables youtube short layout on desktop (not the videos themselves).".

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

screenshot

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

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

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

                        This extension disables the shorts layout on desktop and instead allows for the default playback to be used. Works how youtube used to work.

*Please ensure you refresh any YouTube tabs beforehand in order for this to work*

NOTE: If you are using other extensions that modify the youtube experience, they may cause unexpected behaviour and interference with how this extension works. Please ensure you disable any features from other extensions that interfere with how shorts are displayed to get the intended experience.
* "Enhancer for YouTube™" extension by www.mrfdev.com: Disable "Convert Shorts" option.

Source Code:
https://github.com/probablytukars/Disable-Youtube-Shorts                    

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

Название Disable Youtube Shorts Layout Disable Youtube Shorts Layout
ID lgdgebkjhcbilocmnfkiiicfggjlbdfg
Официальный URL https://chrome.google.com/webstore/detail/disable-youtube-shorts-la/lgdgebkjhcbilocmnfkiiicfggjlbdfg
Описание Disables youtube short layout on desktop (not the videos themselves).
Размер файла 4.03 KB
Количество установок 1,269
Текущая Версия 2.5
Последнее Обновление 2023-07-03
Дата публикации 2022-04-29
Рейтинг 4.47/5 Всего 19 оценок
Разработчик tukars
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Disable Youtube Shorts Layout",
    "description": "Disables youtube short layout on desktop (not the videos themselves).",
    "version": "2.5",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "host_permissions": [
        "https:\/\/www.youtube.com\/*"
    ]
}