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 |
Eメール | [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'" } |