Udemy Notes Downloader

Easily download notes you have created on udemy

Udemy Notes Downloaderคืออะไร?

Udemy Notes Downloader เป็นส่วนขยายของ Chrome ที่พัฒนาโดย raza และคุณลักษณะหลักของมันคือ "Easily download notes you have created on udemy"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Udemy Notes Downloader

ดาวน์โหลดไฟล์ส่วนขยาย 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"
            ]
        }
    ]
}