Udemy Notes Downloader

Easily download notes you have created on udemy

Udemy Notes Downloader là gì?

Udemy Notes Downloader là một tiện ích mở rộng Chrome được phát triển bởi raza, và tính năng chính của nó là "Easily download notes you have created on udemy".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Udemy Notes Downloader

Tải xuống các tệp mở rộng Udemy Notes Downloader dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Udemy Notes Downloader Udemy Notes Downloader
ID nfmebebffodanoadjadpjimpkihfeamn
URL Chính Thức https://chromewebstore.google.com/detail/udemy-notes-downloader/nfmebebffodanoadjadpjimpkihfeamn
Mô tả Easily download notes you have created on udemy
Kích Thước Tệp 235 KB
Số Lần Cài Đặt 54
Phiên Bản Hiện Tại 0.1.0
Cập Nhật Lần Cuối 2023-10-25
Ngày Phát Hành 2023-10-25
Nhà Phát Triển raza
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/CuriousAlways/udemy-notes-downloader
URL Trang Trợ Giúp https://github.com/CuriousAlways/udemy-notes-downloader
Ngôn Ngữ Được Hỗ Trợ 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"
            ]
        }
    ]
}