Udemivity

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

Cos'è Udemivity?

Udemivity è un'estensione di Chrome sviluppata da ken.khor.03, e la sua funzione principale è "Udemivity is a tool to help boost your productivity while using Udemy.".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Udemivity

Scarica i file di estensione Udemivity in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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                    

Informazioni di Base sull'Estensione

Nome Udemivity Udemivity
ID noiplkjjofobodeodpbiocgcmkldeldl
URL Ufficiale https://chromewebstore.google.com/detail/udemivity/noiplkjjofobodeodpbiocgcmkldeldl
Descrizione Udemivity is a tool to help boost your productivity while using Udemy.
Dimensione del File 99.62 KB
Conteggio Installazioni 38
Versione Corrente 1.0
Ultimo Aggiornamento 2021-06-24
Data di Pubblicazione 2021-06-23
Valutazione 3.00/5 Totale 3 Valutazioni
Sviluppatore ken.khor.03
Email [email protected]
Tipo di Pagamento free
Lingue Supportate 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"
            ]
        }
    ]
}