Udemy Notes Downloader
Easily download notes you have created on udemy
Apa itu Udemy Notes Downloader?
Udemy Notes Downloader adalah ekstensi Chrome yang dikembangkan oleh raza, dan fitur utamanya adalah "Easily download notes you have created on udemy".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Udemy Notes Downloader
Unduh file ekstensi Udemy Notes Downloader dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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
Informasi Dasar Ekstensi
Nama | Udemy Notes Downloader |
ID | nfmebebffodanoadjadpjimpkihfeamn |
URL Resmi | https://chromewebstore.google.com/detail/udemy-notes-downloader/nfmebebffodanoadjadpjimpkihfeamn |
Deskripsi | Easily download notes you have created on udemy |
Ukuran File | 235 KB |
Jumlah Instalasi | 54 |
Versi Saat Ini | 0.1.0 |
Terakhir Diperbarui | 2023-10-25 |
Tanggal Publikasi | 2023-10-25 |
Pengembang | raza |
[email protected] | |
Tipe Pembayaran | free |
Situs Ekstensi | https://github.com/CuriousAlways/udemy-notes-downloader |
URL Halaman Bantuan | https://github.com/CuriousAlways/udemy-notes-downloader |
Bahasa yang Didukung | 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" ] } ] } |