eePDF

Download slides on NTHU eeclass

eePDF क्या है?

eePDF engine210 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Download slides on NTHU eeclass"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में eePDF एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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'"
}