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”。

擴展截圖

screenshot

下載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                    

擴展基本資訊

名稱 Udemy Notes Downloader Udemy Notes Downloader
ID nfmebebffodanoadjadpjimpkihfeamn
官方網址 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"
            ]
        }
    ]
}