Udemivity

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

Was ist Udemivity?

Udemivity ist eine Chrome-Erweiterung, die von ken.khor.03 entwickelt wurde, und ihr Hauptmerkmal ist "Udemivity is a tool to help boost your productivity while using Udemy.".

Erweiterungsscreenshots

screenshot
screenshot

Udemivity-Erweiterungs-CRX-Datei herunterladen

Laden Sie Udemivity-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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                    

Grundlegende Informationen zur Erweiterung

Name Udemivity Udemivity
ID noiplkjjofobodeodpbiocgcmkldeldl
Offizielle URL https://chromewebstore.google.com/detail/udemivity/noiplkjjofobodeodpbiocgcmkldeldl
Beschreibung Udemivity is a tool to help boost your productivity while using Udemy.
Dateigröße 99.62 KB
Installationsanzahl 38
Aktuelle Version 1.0
Letztes Update 2021-06-24
Veröffentlichungsdatum 2021-06-23
Bewertung 3.00/5 Insgesamt 3 Bewertungen
Entwickler ken.khor.03
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen 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"
            ]
        }
    ]
}