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ファイルをダウンロード
Udemy Notes Downloader拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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 拡張機能の基本情報
| 名前 | |
| 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 |
| Eメール | [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"
]
}
]
} | |