eePDF
Download slides on NTHU eeclass
什么是eePDF?
eePDF是由engine210开发的Chrome扩展程序,该扩展的主要功能是“Download slides on NTHU eeclass”。
扩展截图
下载eePDF扩展crx文件
下载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 |
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'" } |