eePDF

Download slides on NTHU eeclass

eePDFคืออะไร?

eePDF เป็นส่วนขยายของ Chrome ที่พัฒนาโดย engine210 และคุณลักษณะหลักของมันคือ "Download slides on NTHU eeclass"

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

screenshot

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

ดาวน์โหลดไฟล์ส่วนขยาย eePDF ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        NTHU eeclass (https://eeclass.nthu.edu.tw/) is the new learning platform used in NTHU. Most class materials are available to download. However, download permissions are closed for some slides. This chrome extension enables you to download them directly.

Function:
 • Download slides in PDF format (converted from image)
 • No user data will be collected.

Usage:
 • Go to the page of class material (https://eeclass.nthu.edu.tw/media/doc/*)
 • For class materials without a download button, simply click Download in the eePDF popup page.

eePDF is licensed under the MIT License: https://github.com/engine210/eepdf                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ eePDF eePDF
ID hccamljdahhkmmliblphcafgifhkmedi
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/eepdf/hccamljdahhkmmliblphcafgifhkmedi
คำอธิบาย Download slides on NTHU eeclass
ขนาดไฟล์ 231 KB
จำนวนการติดตั้ง 490
เวอร์ชันปัจจุบัน 1.0.0
อัปเดตครั้งล่าสุด 2021-09-23
วันที่เผยแพร่ 2021-09-23
คะแนน 5.00/5 รวมทั้งหมด 2 คะแนน
ผู้พัฒนา engine210
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/engine210/eepdf
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "Download slides on NTHU eeclass",
    "version": "1.0.0",
    "name": "eePDF",
    "manifest_version": 2,
    "background": {
        "page": "background.html",
        "persistent": false
    },
    "page_action": {
        "default_popup": "popup.html",
        "default_icon": "icon-34.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/eeclass.nthu.edu.tw\/*"
            ],
            "js": [
                "content.bundle.js"
            ],
            "run_at": "document_end"
        }
    ],
    "icons": {
        "128": "icon-128.png"
    },
    "permissions": [
        "declarativeContent"
    ],
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}