Udemy Notes Downloader

Easily download notes you have created on udemy

Co to jest Udemy Notes Downloader?

Udemy Notes Downloader to rozszerzenie Chrome opracowane przez raza, a jego główną funkcją jest „Easily download notes you have created on udemy”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Udemy Notes Downloader

Pobierz pliki rozszerzeń Udemy Notes Downloader w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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                    

Podstawowe informacje o rozszerzeniu

Nazwa Udemy Notes Downloader Udemy Notes Downloader
ID nfmebebffodanoadjadpjimpkihfeamn
Oficjalny URL https://chromewebstore.google.com/detail/udemy-notes-downloader/nfmebebffodanoadjadpjimpkihfeamn
Opis Easily download notes you have created on udemy
Rozmiar pliku 235 KB
Liczba instalacji 54
Aktualna Wersja 0.1.0
Ostatnia Aktualizacja 2023-10-25
Data Publikacji 2023-10-25
Deweloper raza
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/CuriousAlways/udemy-notes-downloader
Adres URL Strony Pomocy https://github.com/CuriousAlways/udemy-notes-downloader
Obsługiwane Języki 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"
            ]
        }
    ]
}