Taiwan eBooks Downloader

Download eBooks directly from Taiwan eBook Database (台湾华文电子书库)

Taiwan eBooks Downloader란 무엇입니까?

Taiwan eBooks Downloader은(는) Yifan Wu에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Download eBooks directly from Taiwan eBook Database (台湾华文电子书库)"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

Taiwan eBooks Downloader 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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!                    

확장 프로그램 기본 정보

이름 Taiwan eBooks Downloader Taiwan eBooks Downloader
ID njahmpkifjjkgelmjpeaflclneafiblp
공식 URL https://chromewebstore.google.com/detail/taiwan-ebooks-downloader/njahmpkifjjkgelmjpeaflclneafiblp
설명 Download eBooks directly from Taiwan eBook Database (台湾华文电子书库)
파일 크기 14.72 KB
설치 횟수 3,000
현재 버전 0.6.0
최근 업데이트 2023-08-02
출시 날짜 2020-04-24
평점 4.53/5 총 19 개의 평점
개발자 Yifan Wu
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/IvanWoo/taiwan-ebooks-downloader
지원되는 언어 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\/*"
    ]
}