Time Saver for YouTube
Display the time saved when the playback speed of a YouTube video is adjusted.
Что такое Time Saver for YouTube?
Time Saver for YouTube - это расширение Chrome, разработанное Julian Acosta, и его основная функция - "Display the time saved when the playback speed of a YouTube video is adjusted.".
Снимки экрана расширения
Скачать файл CRX расширения Time Saver for YouTube
Скачайте файлы расширений Time Saver for YouTube в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Just change the speed and the amount of time you save will be displayed below the video. It's simple and blends in with YouTube's look and feel.
Основная информация о расширении
Название | |
ID | nkfcgfkioefgclgcilgocbdnlhbfmcaf |
Официальный URL | https://chromewebstore.google.com/detail/time-saver-for-youtube/nkfcgfkioefgclgcilgocbdnlhbfmcaf |
Описание | Display the time saved when the playback speed of a YouTube video is adjusted. |
Размер файла | 5.33 KB |
Количество установок | 38 |
Текущая Версия | 0.0.0.3 |
Последнее Обновление | 2023-03-17 |
Дата публикации | 2020-07-02 |
Разработчик | Julian Acosta |
Электронная почта | [email protected] |
Тип оплаты | free |
Поддерживаемые языки | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Time Saver for YouTube", "version": "0.0.0.3", "description": "Display the time saved when the playback speed of a YouTube video is adjusted.", "content_scripts": [ { "matches": [ "*:\/\/www.youtube.com\/*" ], "js": [ "content-script.js" ], "run_at": "document_idle" } ], "web_accessible_resources": [ "youtube-script.js" ], "permissions": [ "*:\/\/www.youtube.com\/*" ] } |