Udemivity

Udemivity is a tool to help boost your productivity while using Udemy.

Co to jest Udemivity?

Udemivity to rozszerzenie Chrome opracowane przez ken.khor.03, a jego główną funkcją jest „Udemivity is a tool to help boost your productivity while using Udemy.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia Udemivity

Pobierz pliki rozszerzeń Udemivity w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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                    

Podstawowe informacje o rozszerzeniu

Nazwa Udemivity Udemivity
ID noiplkjjofobodeodpbiocgcmkldeldl
Oficjalny URL https://chromewebstore.google.com/detail/udemivity/noiplkjjofobodeodpbiocgcmkldeldl
Opis Udemivity is a tool to help boost your productivity while using Udemy.
Rozmiar pliku 99.62 KB
Liczba instalacji 38
Aktualna Wersja 1.0
Ostatnia Aktualizacja 2021-06-24
Data Publikacji 2021-06-23
Ocena 3.00/5 Łącznie 3 Oceny
Deweloper ken.khor.03
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki 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"
            ]
        }
    ]
}