Batch Link Downloader

Download multiple links from a website easily.

Batch Link Downloader là gì?

Batch Link Downloader là một tiện ích mở rộng Chrome được phát triển bởi Fabian Gremper, và tính năng chính của nó là "Download multiple links from a website easily.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Batch Link Downloader

Tải xuống các tệp mở rộng Batch Link Downloader dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        Download many links from a website easily.

Do you want to download a bunch of PDFs, podcasts, or other files from a website and not right-click-"Save-as" every single one of them? Batch Link Downloader solves this problem for you!

Batch Link Downloader is a DownThemAll! alternative for Chrome.

Go to Chrome Preferences ("chrome://settings/"), "Advanced", and disable "Ask where to save each file before downloading" to avoid popups for every file.

This is the first release. Feedback and even feature requests are very welcome. Use the feedback form in the Chrome Web Store (Support → Tell the Developer) or send an email to [email protected]                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Batch Link Downloader Batch Link Downloader
ID aiahkbnnpafepcgnhhecilboebmmolnn
URL Chính Thức https://chromewebstore.google.com/detail/batch-link-downloader/aiahkbnnpafepcgnhhecilboebmmolnn
Mô tả Download multiple links from a website easily.
Kích Thước Tệp 47.02 KB
Số Lần Cài Đặt 152,595
Phiên Bản Hiện Tại 1.0.1
Cập Nhật Lần Cuối 2020-05-20
Ngày Phát Hành 2020-05-20
Đánh Giá 4.11/5 Tổng số 301 Đánh Giá
Nhà Phát Triển Fabian Gremper
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Batch Link Downloader",
    "version": "1.0.1",
    "description": "Download multiple links from a website easily.",
    "author": "Fabian Gremper",
    "icons": {
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "jquery-2.1.4.min.js",
                "content.js"
            ]
        }
    ],
    "browser_action": {
        "default_icon": {
            "19": "icon19.png",
            "38": "icon38.png"
        },
        "default_title": "Batch Link Downloader",
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "permissions": [
        "activeTab",
        "downloads"
    ]
}