Udemivity

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

Vad är Udemivity?

Udemivity är en Chrome-tillägg utvecklad av ken.khor.03, och dess huvudfunktion är "Udemivity is a tool to help boost your productivity while using Udemy.".

Tilläggsskärmbilder

screenshot
screenshot

Ladda ner Udemivity-förlängningens CRX-fil

Ladda ner Udemivity-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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äggande Information om Tillägg

Namn Udemivity Udemivity
ID noiplkjjofobodeodpbiocgcmkldeldl
Officiell webbadress https://chromewebstore.google.com/detail/udemivity/noiplkjjofobodeodpbiocgcmkldeldl
Beskrivning Udemivity is a tool to help boost your productivity while using Udemy.
Filstorlek 99.62 KB
Antal Installationer 38
Aktuell Version 1.0
Senast Uppdaterad 2021-06-24
Publiceringsdatum 2021-06-23
Betyg 3.00/5 Totalt 3 Betyg
Utvecklare ken.khor.03
E-post [email protected]
Betalningssätt free
Stödda Språk 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"
            ]
        }
    ]
}