Udemy™ Faster Autoplay

Removes the 3-second delay before autoplaying the next video.

Что такое Udemy™ Faster Autoplay?

Udemy™ Faster Autoplay - это расширение Chrome, разработанное elliotwaite, и его основная функция - "Removes the 3-second delay before autoplaying the next video.".

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

screenshot

Скачать файл CRX расширения Udemy™ Faster Autoplay

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

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

                        If you enable autoplay while watching a Udemy playlist, once a video ends, you
are usually advanced to the next video after a 3-second delay. This extension
removes that 3-second delay so that you are always advanced to the next video
immediately.

This extension is open source on GitHub. If you find any bugs or have any suggestions, please open an issue here: https://github.com/elliotwaite/udemy-faster-autoplay

Thanks. Enjoy!

Udemy™ is a trademark of Udemy, Inc. Use of this trademark is subject to Udemy Permissions.                    

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

Название Udemy™ Faster Autoplay Udemy™ Faster Autoplay
ID fepcpdjalebcocminbnogcgfbphllkeh
Официальный URL https://chromewebstore.google.com/detail/udemy-faster-autoplay/fepcpdjalebcocminbnogcgfbphllkeh
Описание Removes the 3-second delay before autoplaying the next video.
Размер файла 37.23 KB
Количество установок 645
Текущая Версия 0.2
Последнее Обновление 2021-12-01
Дата публикации 2021-09-27
Рейтинг 5.00/5 Всего 5 оценок
Разработчик elliotwaite
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://github.com/elliotwaite/udemy-faster-autoplay
URL страницы помощи https://github.com/elliotwaite/udemy-faster-autoplay
Поддерживаемые языки en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Udemy\u2122 Faster Autoplay",
    "version": "0.2",
    "description": "Removes the 3-second delay before autoplaying the next video.",
    "author": "Elliot Waite",
    "icons": {
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.udemy.com\/*"
            ],
            "js": [
                "lib\/jquery-3.6.0.min.js",
                "content-script.js"
            ],
            "run_at": "document_end"
        }
    ]
}