Udemy Notes Downloader

Easily download notes you have created on udemy

Wat is Udemy Notes Downloader?

Udemy Notes Downloader is een Chrome-extensie ontwikkeld door raza, en de belangrijkste functie is "Easily download notes you have created on udemy".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Udemy Notes Downloader

Download Udemy Notes Downloader-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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                    

Basisinformatie over de Extensie

Naam Udemy Notes Downloader Udemy Notes Downloader
ID nfmebebffodanoadjadpjimpkihfeamn
Officiële URL https://chromewebstore.google.com/detail/udemy-notes-downloader/nfmebebffodanoadjadpjimpkihfeamn
Beschrijving Easily download notes you have created on udemy
Bestandsgrootte 235 KB
Aantal Installaties 54
Huidige Versie 0.1.0
Laatst Bijgewerkt 2023-10-25
Publicatiedatum 2023-10-25
Ontwikkelaar raza
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://github.com/CuriousAlways/udemy-notes-downloader
Help Pagina-URL https://github.com/CuriousAlways/udemy-notes-downloader
Ondersteunde Talen 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"
            ]
        }
    ]
}