Udemy Notes Downloader
Easily download notes you have created on udemy
Cos'è Udemy Notes Downloader?
Udemy Notes Downloader è un'estensione di Chrome sviluppata da raza, e la sua funzione principale è "Easily download notes you have created on udemy".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Udemy Notes Downloader
Scarica i file di estensione Udemy Notes Downloader in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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 Informazioni di Base sull'Estensione
| Nome | |
| ID | nfmebebffodanoadjadpjimpkihfeamn |
| URL Ufficiale | https://chromewebstore.google.com/detail/udemy-notes-downloader/nfmebebffodanoadjadpjimpkihfeamn |
| Descrizione | Easily download notes you have created on udemy |
| Dimensione del File | 235 KB |
| Conteggio Installazioni | 54 |
| Versione Corrente | 0.1.0 |
| Ultimo Aggiornamento | 2023-10-25 |
| Data di Pubblicazione | 2023-10-25 |
| Sviluppatore | raza |
| [email protected] | |
| Tipo di Pagamento | free |
| Sito Web dell'Estensione | https://github.com/CuriousAlways/udemy-notes-downloader |
| URL della Pagina di Aiuto | https://github.com/CuriousAlways/udemy-notes-downloader |
| Lingue Supportate | 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"
]
}
]
} | |