Bulk Image Downloader From List

A Chrome extension to bulk download images from a list of image urls.

什麼是Bulk Image Downloader From List?

Bulk Image Downloader From List是由danstanongubo開發的Chrome擴展程式,該擴展的主要功能是“A Chrome extension to bulk download images from a list of image urls.”。

擴展截圖

screenshot

下載Bulk Image Downloader From List擴展crx文件

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

擴展使用說明

                        A very simple and straightforward extension to bulk download images from your list. 

Simply install the chrome extension.

Click the chrome extensions icon, Bulk Image Downloader from List extension will be present.

Click to pin in for easier access.

Click the download icon of the extension to add a list of the images you would like to bulk download.

Paste the urls and click Download to begin the process.

The extension can handle many urls at ago. 

Disclaimer! Make sure you have all the necessary rights to acquire images and that you do not infringe on the rights of the owner.

Enjoy and give me a 5 star if you like it! I will appreciate very much!                    

擴展基本資訊

名稱 Bulk Image Downloader From List Bulk Image Downloader From List
ID kekkjfalendfifgchoceceoahjnejmgf
官方網址 https://chromewebstore.google.com/detail/bulk-image-downloader-fro/kekkjfalendfifgchoceceoahjnejmgf
簡介 A Chrome extension to bulk download images from a list of image urls.
檔案大小 5.02 KB
安裝次數 2,098
目前版本 1.0
更新時間 2023-09-11
上架時間 2023-09-11
評分 5.00/5 共 14 次評分
開發者 danstanongubo
電子郵箱 [email protected]
付費類型 free
支援的語言 en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Bulk Image Downloader From List",
    "version": "1.0",
    "description": "A Chrome extension to bulk download images from a list of image urls.",
    "permissions": [
        "downloads"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "images\/icon.png"
        }
    },
    "icons": {
        "16": "images\/icon.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ]
}