Udemy Notes Downloader
Easily download notes you have created on udemy
Vad är Udemy Notes Downloader?
Udemy Notes Downloader är en Chrome-tillägg utvecklad av raza, och dess huvudfunktion är "Easily download notes you have created on udemy".
Tilläggsskärmbilder
Ladda ner Udemy Notes Downloader-förlängningens CRX-fil
Ladda ner Udemy Notes Downloader-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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äggande Information om Tillägg
| Namn | |
| ID | nfmebebffodanoadjadpjimpkihfeamn |
| Officiell webbadress | https://chromewebstore.google.com/detail/udemy-notes-downloader/nfmebebffodanoadjadpjimpkihfeamn |
| Beskrivning | Easily download notes you have created on udemy |
| Filstorlek | 235 KB |
| Antal Installationer | 54 |
| Aktuell Version | 0.1.0 |
| Senast Uppdaterad | 2023-10-25 |
| Publiceringsdatum | 2023-10-25 |
| Utvecklare | raza |
| E-post | [email protected] |
| Betalningssätt | free |
| Tilläggswebbplats | https://github.com/CuriousAlways/udemy-notes-downloader |
| Hjälpsida URL | https://github.com/CuriousAlways/udemy-notes-downloader |
| Stödda Språk | 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"
]
}
]
} | |