Udemivity

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

O que é Udemivity?

Udemivity é uma extensão do Chrome desenvolvida por ken.khor.03, e sua principal característica é "Udemivity is a tool to help boost your productivity while using Udemy.".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão Udemivity

Baixe arquivos de extensão Udemivity no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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                    

Informações Básicas da Extensão

Nome Udemivity Udemivity
ID noiplkjjofobodeodpbiocgcmkldeldl
URL Oficial https://chromewebstore.google.com/detail/udemivity/noiplkjjofobodeodpbiocgcmkldeldl
Descrição Udemivity is a tool to help boost your productivity while using Udemy.
Tamanho do Arquivo 99.62 KB
Contagem de Instalações 38
Versão Atual 1.0
Última Atualização 2021-06-24
Data de Publicação 2021-06-23
Classificação 3.00/5 Total de 3 Avaliações
Desenvolvedor ken.khor.03
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados 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"
            ]
        }
    ]
}