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
官方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"
            ]
        }
    ]
}