Udemy Notes Downloader

Easily download notes you have created on udemy

O que é Udemy Notes Downloader?

Udemy Notes Downloader é uma extensão do Chrome desenvolvida por raza, e sua principal característica é "Easily download notes you have created on udemy".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Udemy Notes Downloader

Baixe arquivos de extensão Udemy Notes Downloader 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

                        This extension lets you download notes you have created while completing udemy courses.
Features : 
- markdown format
- supports code highlighting

suggestion and improvements are welcome 
github repo -> https://github.com/CuriousAlways/udemy-notes-downloader                    

Informações Básicas da Extensão

Nome Udemy Notes Downloader Udemy Notes Downloader
ID nfmebebffodanoadjadpjimpkihfeamn
URL Oficial https://chromewebstore.google.com/detail/udemy-notes-downloader/nfmebebffodanoadjadpjimpkihfeamn
Descrição Easily download notes you have created on udemy
Tamanho do Arquivo 235 KB
Contagem de Instalações 54
Versão Atual 0.1.0
Última Atualização 2023-10-25
Data de Publicação 2023-10-25
Desenvolvedor raza
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/CuriousAlways/udemy-notes-downloader
URL da Página de Ajuda https://github.com/CuriousAlways/udemy-notes-downloader
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Udemy Notes Downloader",
    "version": "0.1.0",
    "description": "Easily download notes you have created on udemy",
    "icons": {
        "16": "icons\/icon_16.png",
        "32": "icons\/icon_32.png",
        "48": "icons\/icon_48.png",
        "128": "icons\/icon_128.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_title": "Udemy Notes Downloader",
        "default_popup": "popup.html"
    },
    "permissions": [
        "activeTab",
        "scripting",
        "downloads"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.udemy.com\/*"
            ],
            "run_at": "document_idle",
            "js": [
                "contentScript.js"
            ]
        }
    ]
}