Udemy Notes Downloader
Easily download notes you have created on udemy
Qu'est-ce que Udemy Notes Downloader ?
Udemy Notes Downloader est une extension Chrome développée par raza, et sa fonction principale est "Easily download notes you have created on udemy".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Udemy Notes Downloader
Téléchargez les fichiers d'extension Udemy Notes Downloader au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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
Informations de Base sur l'Extension
Nom | Udemy Notes Downloader |
ID | nfmebebffodanoadjadpjimpkihfeamn |
URL Officiel | https://chromewebstore.google.com/detail/udemy-notes-downloader/nfmebebffodanoadjadpjimpkihfeamn |
Description | Easily download notes you have created on udemy |
Taille du Fichier | 235 KB |
Nombre d'Installations | 54 |
Version Actuelle | 0.1.0 |
Dernière Mise à Jour | 2023-10-25 |
Date de Publication | 2023-10-25 |
Développeur | raza |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/CuriousAlways/udemy-notes-downloader |
URL de la Page d'Aide | https://github.com/CuriousAlways/udemy-notes-downloader |
Langues Prises en Charge | 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" ] } ] } |