Udemy Notes Downloader
Easily download notes you have created on udemy
Hvad er Udemy Notes Downloader?
Udemy Notes Downloader er en Chrome-udvidelse udviklet af raza, og dens hovedfunktion er "Easily download notes you have created on udemy".
Udvidelsesskærmbilleder
Download Udemy Notes Downloader-udvidelses-CRX-fil
Download Udemy Notes Downloader-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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 Grundlæggende oplysninger om udvidelsen
| Navn | |
| ID | nfmebebffodanoadjadpjimpkihfeamn |
| Officiel URL | https://chromewebstore.google.com/detail/udemy-notes-downloader/nfmebebffodanoadjadpjimpkihfeamn |
| Beskrivelse | Easily download notes you have created on udemy |
| Filstørrelse | 235 KB |
| Antal Installationer | 54 |
| Nuværende Version | 0.1.0 |
| Senest Opdateret | 2023-10-25 |
| Udgivelsesdato | 2023-10-25 |
| Udvikler | raza |
| [email protected] | |
| Betalingsmetode | free |
| Udvidelseswebsted | https://github.com/CuriousAlways/udemy-notes-downloader |
| Hjælpeside-URL | https://github.com/CuriousAlways/udemy-notes-downloader |
| Understøttede Sprog | 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"
]
}
]
} | |