Udemy Notes Downloader
Easily download notes you have created on udemy
Was ist Udemy Notes Downloader?
Udemy Notes Downloader ist eine Chrome-Erweiterung, die von raza entwickelt wurde, und ihr Hauptmerkmal ist "Easily download notes you have created on udemy".
Erweiterungsscreenshots
Udemy Notes Downloader-Erweiterungs-CRX-Datei herunterladen
Laden Sie Udemy Notes Downloader-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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 Grundlegende Informationen zur Erweiterung
| Name | |
| ID | nfmebebffodanoadjadpjimpkihfeamn |
| Offizielle URL | https://chromewebstore.google.com/detail/udemy-notes-downloader/nfmebebffodanoadjadpjimpkihfeamn |
| Beschreibung | Easily download notes you have created on udemy |
| Dateigröße | 235 KB |
| Installationsanzahl | 54 |
| Aktuelle Version | 0.1.0 |
| Letztes Update | 2023-10-25 |
| Veröffentlichungsdatum | 2023-10-25 |
| Entwickler | raza |
| [email protected] | |
| Zahlungsart | free |
| Erweiterungswebsite | https://github.com/CuriousAlways/udemy-notes-downloader |
| Hilfeseite URL | https://github.com/CuriousAlways/udemy-notes-downloader |
| Unterstützte Sprachen | 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"
]
}
]
} | |