Internet Archive Downloader

Download PDF books from archive.org

Internet Archive Downloaderとは何ですか?

Internet Archive DownloaderはElement Davvによって開発されたChromeの拡張機能で、その主な機能は「Download PDF books from archive.org」です。

拡張機能のスクリーンショット

screenshot
screenshot
screenshot
screenshot
screenshot
screenshot
screenshot
screenshot

Internet Archive Downloader拡張機能のCRXファイルをダウンロード

Internet Archive Downloader拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        Internet Archive(archive.org) holds more than 34 millions books for free access. Some mean to be read online by borrowing for a limit period. This extension can download these books for later reading.
HathiTrust Digital Library(hathitrust.org) support added. All books with full view permission can be downloaded at a click.

Usage
For Internet Archive(https://archive.org/):
After borrowing a book, two new buttons named "Quality" and "Download" will appear under the book viewer, beside the "Favorite" button.

To get current book as PDF file, click the "Download" button.
To get each leaf as a JPEG file, click the "Download" button with Ctrl key pressed(Command key on Mac).
With the download begins, the button will turn into a progress bar.

There are variant leaf qualities for each book which the extension keeps up to four levels. Click the stars on the "Quality" button to choose one. Default is the best quality(the original image, without scaled down).

For HathiTrust(https://hathitrust.org/):
No login, no borrows required. Once a book page loaded, a new section named "Ayesha" will appears above the "Download" section on the left-hand side of the page. Click it to show the download controlls. There are three items, named "Quality", "Tasks" and "Download".

To get current book as PDF file, click the "Download" button.
To get each leaf as a image file(JPEG and/or PNG), click the "Download" button with Ctrl key pressed(Command key on Mac).
With the download begins, the button will turn into a progress bar.

As for leaf quality controll "Quality", the first option is "full size", which will download every page in their highest size, but they may be much different between each others. Other options will download all pages in almost the same size.

The third controll is "Tasks", by which task number running synchronously can be selected. HathiTrust server does not allowed frequent access. The extension have to take some breaks during the download process. Choose a suitable task number to get the best experience.

Availability
For Brave to work properly, item 'File System Access API' in 'brave://flags' page should be enabled.

Change log
v0.7.0
Add hathitrust.org support.
Add png page type support.
Add Http 502/504 gateway errors support, when that happened download will retry, not just abort.
If the download button does not appear due to slow network, you can show it manually by clicking the extension icon on browser toolbar after the page being loaded.

v0.6.3
Possible download succeeded with 0 byte pdf for large file. Now fixed

v0.6.2
* Books will be returned automatically on successful download to make it available to other users

v0.6.1
* Possibble leaf lost caused by unexpected abort. Now fixed
* In some browsers under incorrect settings, download succeeded but no file found. Now fixed

v0.6.0
* Downloads will now retry automatically whenever network errors occured. So it will work more smoothly than ever
* Download process can be aborted immediately now. There is no need to wait for cleaning up any more
* Fix button title place inaccurate
* More browsers are supported
* Compatibility improvements

v0.5.0
* Add option of downloading as JPEG files

v0.4.0
* Retrieve page info from book structure instead of from book reading window, in case it may be incorrect on boundary conditions
* Buttons show up quickly even on slow network now
* Improve the reliability and stability

v0.3.0
* Add option of page quality
* Constraint the download function to media type of books borrowed, don't interfere with other media or books of always available
* Clean uncompleted files on failed/canceled downloads

v0.2.0
* Download to a whole PDF book
* Independant of CORS extension

v0.1.0
* Download each page to a single JPEG file
* Dependant on CORS extension                    

拡張機能の基本情報

名前 Internet Archive Downloader Internet Archive Downloader
ID keimonnoakgkpnifppoomfdlkadghkjb
公式URL https://chromewebstore.google.com/detail/internet-archive-download/keimonnoakgkpnifppoomfdlkadghkjb
説明 Download PDF books from archive.org
ファイルサイズ 57.08 KB
インストール数 33,698
現在のバージョン 0.7.0
最終更新日 2024-02-25
公開日 2023-03-08
評価 4.58/5 合計 143 レビュー
開発者 Element Davv
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://github.com/elementdavv/internet_archive_downloader
ヘルプページのURL https://github.com/elementdavv/internet_archive_downloader/issues
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "author": "Element Davv ",
    "description": "__MSG_description__",
    "homepage_url": "https:\/\/github.com\/elementdavv\/internet_archive_downloader",
    "name": "Internet Archive Downloader",
    "version": "0.7.0",
    "default_locale": "en",
    "icons": {
        "128": "images\/logo128.png"
    },
    "action": {
        "default_icon": {
            "128": "images\/logo128.png"
        },
        "default_title": "__MSG_title__"
    },
    "background": {
        "service_worker": "js\/bg.js",
        "type": "module"
    },
    "permissions": [
        "declarativeNetRequest",
        "downloads",
        "scripting",
        "storage",
        "tabs"
    ],
    "host_permissions": [
        ""
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "css\/*",
                "js\/*"
            ],
            "matches": [
                "https:\/\/archive.org\/*",
                "https:\/\/babel.hathitrust.org\/*"
            ]
        }
    ]
}