Udemy Notes Downloader

Easily download notes you have created on udemy

What is Udemy Notes Downloader?

Udemy Notes Downloader is a Chrome extension developed by raza, and its main feature is "Easily download notes you have created on udemy".

Extension Screenshots

screenshot

Download Udemy Notes Downloader Extension CRX File

Download Udemy Notes Downloader extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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                    

Extension Basic Information

Name Udemy Notes Downloader Udemy Notes Downloader
ID nfmebebffodanoadjadpjimpkihfeamn
Official URL https://chromewebstore.google.com/detail/udemy-notes-downloader/nfmebebffodanoadjadpjimpkihfeamn
Description Easily download notes you have created on udemy
File Size 235 KB
Installation Count 54
Current Version 0.1.0
Last Updated 2023-10-25
Publish Date 2023-10-25
Developer raza
Email [email protected]
Payment Type free
Extension Website https://github.com/CuriousAlways/udemy-notes-downloader
Help Page URL https://github.com/CuriousAlways/udemy-notes-downloader
Supported Languages 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"
            ]
        }
    ]
}