Udemivity
Udemivity is a tool to help boost your productivity while using Udemy.
Что такое Udemivity?
Udemivity - это расширение Chrome, разработанное ken.khor.03, и его основная функция - "Udemivity is a tool to help boost your productivity while using Udemy.".
Снимки экрана расширения
Скачать файл CRX расширения Udemivity
Скачайте файлы расширений Udemivity в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
What is Udemivity? An app to boost your productivity while using Udemy. Why Udemivity is created? At this time, Udemy did not provide an overview of remaining duration of an incomplete course taken. I reckon it works better for me to have the remaining duration of the course displayed to get myself motivated. Current Features: - Displays the remaining duration of incomplete sections - Displays the total remaining duration of an incomplete course
Основная информация о расширении
Название | Udemivity |
ID | noiplkjjofobodeodpbiocgcmkldeldl |
Официальный URL | https://chromewebstore.google.com/detail/udemivity/noiplkjjofobodeodpbiocgcmkldeldl |
Описание | Udemivity is a tool to help boost your productivity while using Udemy. |
Размер файла | 99.62 KB |
Количество установок | 38 |
Текущая Версия | 1.0 |
Последнее Обновление | 2021-06-24 |
Дата публикации | 2021-06-23 |
Рейтинг | 3.00/5 Всего 3 оценок |
Разработчик | ken.khor.03 |
Электронная почта | [email protected] |
Тип оплаты | free |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Udemivity", "description": "Udemivity is a tool to help boost your productivity while using Udemy.", "version": "1.0", "manifest_version": 3, "action": { "default_popup": "popup.html", "default_icon": { "16": "\/images\/coconut16.png", "32": "\/images\/coconut32.png" } }, "icons": { "16": "\/images\/coconut16.png", "32": "\/images\/coconut32.png" }, "content_scripts": [ { "matches": [ "https:\/\/www.udemy.com\/course\/*" ], "run_at": "document_idle", "js": [ "progressScript.js" ] } ] } |