eePDF
Download slides on NTHU eeclass
eePDF란 무엇입니까?
eePDF은(는) engine210에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Download slides on NTHU eeclass"입니다.
확장 프로그램 스크린샷
eePDF 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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 |
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'" } |