Redirect Shorts

Redirects youtube shorts to the normal player

Что такое Redirect Shorts?

Redirect Shorts - это расширение Chrome, разработанное manas.bejj, и его основная функция - "Redirects youtube shorts to the normal player".

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

screenshot

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

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

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

                        This extension replaces the "/shorts/" from the url with "watch?v=" to play your shorts video on the normal player which is more user friendly on a computer.                    

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

Название Redirect Shorts Redirect Shorts
ID lncinpfgcgmphkebnbfpogkgiaadphpi
Официальный URL https://chromewebstore.google.com/detail/redirect-shorts/lncinpfgcgmphkebnbfpogkgiaadphpi
Описание Redirects youtube shorts to the normal player
Размер файла 32.03 KB
Количество установок 2,945
Текущая Версия 1.0
Последнее Обновление 2022-03-03
Дата публикации 2022-03-03
Рейтинг 4.32/5 Всего 28 оценок
Разработчик manas.bejj
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Redirect Shorts",
    "version": "1.0",
    "manifest_version": 3,
    "description": "Redirects youtube shorts to the normal player",
    "icons": {
        "16": "16.png",
        "48": "48.png",
        "128": "128.png",
        "256": "256.png"
    },
    "host_permissions": [
        "*:\/\/www.youtube.com\/shorts\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/www.youtube.com\/*"
            ],
            "js": [
                "yt.js"
            ],
            "run_at": "document_start"
        }
    ]
}