Udemy Notes Downloader
Easily download notes you have created on udemy
ما هو Udemy Notes Downloader؟
Udemy Notes Downloader هو إضافة Chrome تم تطويرها بواسطة raza، والميزة الرئيسية لها هي "Easily download notes you have created on udemy".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Udemy Notes Downloader
قم بتنزيل ملفات الامتداد Udemy Notes Downloader بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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
معلومات أساسية عن التمديد
الاسم | Udemy Notes Downloader |
ID | nfmebebffodanoadjadpjimpkihfeamn |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/udemy-notes-downloader/nfmebebffodanoadjadpjimpkihfeamn |
الوصف | Easily download notes you have created on udemy |
حجم الملف | 235 KB |
عدد التثبيتات | 54 |
النسخة الحالية | 0.1.0 |
آخر تحديث | 2023-10-25 |
تاريخ النشر | 2023-10-25 |
المطور | raza |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
موقع الإضافة | https://github.com/CuriousAlways/udemy-notes-downloader |
عنوان صفحة المساعدة | https://github.com/CuriousAlways/udemy-notes-downloader |
اللغات المدعومة | 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" ] } ] } |