eePDF

Download slides on NTHU eeclass

Wat is eePDF?

eePDF is een Chrome-extensie ontwikkeld door engine210, en de belangrijkste functie is "Download slides on NTHU eeclass".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie eePDF

Download eePDF-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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                    

Basisinformatie over de Extensie

Naam eePDF eePDF
ID hccamljdahhkmmliblphcafgifhkmedi
Officiële URL https://chromewebstore.google.com/detail/eepdf/hccamljdahhkmmliblphcafgifhkmedi
Beschrijving Download slides on NTHU eeclass
Bestandsgrootte 231 KB
Aantal Installaties 490
Huidige Versie 1.0.0
Laatst Bijgewerkt 2021-09-23
Publicatiedatum 2021-09-23
Beoordeling 5.00/5 Totaal 2 Beoordelingen
Ontwikkelaar engine210
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://github.com/engine210/eepdf
Ondersteunde Talen 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'"
}