Taiwan eBooks Downloader
Download eBooks directly from Taiwan eBook Database (台湾华文电子书库)
Was ist Taiwan eBooks Downloader?
Taiwan eBooks Downloader ist eine Chrome-Erweiterung, die von Yifan Wu entwickelt wurde, und ihr Hauptmerkmal ist "Download eBooks directly from Taiwan eBook Database (台湾华文电子书库)".
Erweiterungsscreenshots
Taiwan eBooks Downloader-Erweiterungs-CRX-Datei herunterladen
Laden Sie Taiwan eBooks Downloader-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
An open-source Chrome extension for downloading ebooks from Taiwan eBooks Database (http://taiwanebook.ncl.edu.tw/). 一个用来下载台湾华文电子书库(http://taiwanebook.ncl.edu.tw/) PDF 档案的开源 Chrome 扩展程序。 Github repository: https://github.com/IvanWoo/taiwan-ebooks-downloader. Please feel free to report any bugs!
Grundlegende Informationen zur Erweiterung
Name | Taiwan eBooks Downloader |
ID | njahmpkifjjkgelmjpeaflclneafiblp |
Offizielle URL | https://chromewebstore.google.com/detail/taiwan-ebooks-downloader/njahmpkifjjkgelmjpeaflclneafiblp |
Beschreibung | Download eBooks directly from Taiwan eBook Database (台湾华文电子书库) |
Dateigröße | 14.72 KB |
Installationsanzahl | 3,000 |
Aktuelle Version | 0.6.0 |
Letztes Update | 2023-08-02 |
Veröffentlichungsdatum | 2020-04-24 |
Bewertung | 4.53/5 Insgesamt 19 Bewertungen |
Entwickler | Yifan Wu |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://github.com/IvanWoo/taiwan-ebooks-downloader |
Unterstützte Sprachen | en,zh-CN |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Taiwan eBooks Downloader", "version": "0.6.0", "default_locale": "en", "description": "Download eBooks directly from Taiwan eBook Database (\u53f0\u6e7e\u534e\u6587\u7535\u5b50\u4e66\u5e93)", "icons": { "16": "images\/logo16.png", "32": "images\/logo32.png", "48": "images\/logo48.png", "128": "images\/logo128.png" }, "author": "Yifan Wu", "action": { "default_title": "Taiwan eBooks Downloader" }, "content_scripts": [ { "js": [ "js\/inject.js" ], "css": [ "css\/main.css" ], "matches": [ "*:\/\/taiwanebook.ncl.edu.tw\/*" ], "run_at": "document_idle" } ], "background": { "service_worker": "background.js" }, "permissions": [ "declarativeNetRequest" ], "declarative_net_request": { "rule_resources": [ { "id": "ruleset_1", "enabled": true, "path": "rules.json" } ] }, "host_permissions": [ "https:\/\/taiwanebook.ncl.edu.tw\/ebkFiles\/*" ] } |