Batch Link Downloader

Download multiple links from a website easily.

什麼是Batch Link Downloader?

Batch Link Downloader是由Fabian Gremper開發的Chrome擴展程式,該擴展的主要功能是“Download multiple links from a website easily.”。

擴展截圖

screenshot

下載Batch Link Downloader擴展crx文件

下載Batch Link Downloader擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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]                    

擴展基本資訊

名稱 Batch Link Downloader Batch Link Downloader
ID aiahkbnnpafepcgnhhecilboebmmolnn
官方網址 https://chromewebstore.google.com/detail/batch-link-downloader/aiahkbnnpafepcgnhhecilboebmmolnn
簡介 Download multiple links from a website easily.
檔案大小 47.02 KB
安裝次數 152,595
目前版本 1.0.1
更新時間 2020-05-20
上架時間 2020-05-20
評分 4.11/5 共 301 次評分
開發者 Fabian Gremper
付費類型 free
支援的語言 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"
    ]
}