Udemivity

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

Hvad er Udemivity?

Udemivity er en Chrome-udvidelse udviklet af ken.khor.03, og dens hovedfunktion er "Udemivity is a tool to help boost your productivity while using Udemy.".

Udvidelsesskærmbilleder

screenshot
screenshot

Download Udemivity-udvidelses-CRX-fil

Download Udemivity-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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                    

Grundlæggende oplysninger om udvidelsen

Navn Udemivity Udemivity
ID noiplkjjofobodeodpbiocgcmkldeldl
Officiel URL https://chromewebstore.google.com/detail/udemivity/noiplkjjofobodeodpbiocgcmkldeldl
Beskrivelse Udemivity is a tool to help boost your productivity while using Udemy.
Filstørrelse 99.62 KB
Antal Installationer 38
Nuværende Version 1.0
Senest Opdateret 2021-06-24
Udgivelsesdato 2021-06-23
Bedømmelse 3.00/5 Samlet 3 Bedømmelser
Udvikler ken.khor.03
E-mail [email protected]
Betalingsmetode free
Understøttede Sprog 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"
            ]
        }
    ]
}