Playback Time Calculator | YouTube, Udemy

Calculate time by playback speed of video and playlist.

Что такое Playback Time Calculator | YouTube, Udemy?

Playback Time Calculator | YouTube, Udemy - это расширение Chrome, разработанное heesangbb, и его основная функция - "Calculate time by playback speed of video and playlist.".

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

screenshot
screenshot
screenshot
screenshot
screenshot

Скачать файл CRX расширения Playback Time Calculator | YouTube, Udemy

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

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

                        This extension displays time by playback speed of videos and playlists.

Features:
Displays the time by playback speed of video.
Displays the total playing time of the playlist(by playback speed).

How to use:
⏱: Time is displayed by playback speed when you mouse over it.

Caution:
If there are more than 100 videos in the playlist, scroll down and it will be counted again when loading is complete. - youtube                    

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

Название Playback Time Calculator | YouTube, Udemy Playback Time Calculator | YouTube, Udemy
ID kgjhahmomjhljmdaifmfepffdeldmpmg
Официальный URL https://chromewebstore.google.com/detail/playback-time-calculator/kgjhahmomjhljmdaifmfepffdeldmpmg
Описание Calculate time by playback speed of video and playlist.
Размер файла 13.22 KB
Количество установок 138
Текущая Версия 1.0.1
Последнее Обновление 2022-08-26
Дата публикации 2022-08-01
Рейтинг 5.00/5 Всего 2 оценок
Разработчик heesangbb
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://github.com/heesangbb/playback-time-calculator-extension
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Playback Time Calculator | YouTube, Udemy",
    "description": "Calculate time by playback speed of video and playlist.",
    "version": "1.0.1",
    "manifest_version": 3,
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.youtube.com\/*",
                "*:\/\/*.udemy.com\/*"
            ],
            "js": [
                "content.js"
            ],
            "css": [
                "content.css"
            ],
            "run_at": "document_idle"
        }
    ],
    "icons": {
        "128": "\/assets\/icon_128.png"
    }
}