Udemy Notes Downloader
Easily download notes you have created on udemy
Udemy Notes Downloader란 무엇입니까?
Udemy Notes Downloader은(는) raza에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Easily download notes you have created on udemy"입니다.
확장 프로그램 스크린샷
Udemy Notes Downloader 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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
확장 프로그램 기본 정보
이름 | Udemy Notes Downloader |
ID | nfmebebffodanoadjadpjimpkihfeamn |
공식 URL | https://chromewebstore.google.com/detail/udemy-notes-downloader/nfmebebffodanoadjadpjimpkihfeamn |
설명 | Easily download notes you have created on udemy |
파일 크기 | 235 KB |
설치 횟수 | 54 |
현재 버전 | 0.1.0 |
최근 업데이트 | 2023-10-25 |
출시 날짜 | 2023-10-25 |
개발자 | raza |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/CuriousAlways/udemy-notes-downloader |
도움말 페이지 URL | https://github.com/CuriousAlways/udemy-notes-downloader |
지원되는 언어 | 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" ] } ] } |