Bulk Image Downloader From List

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

Hvad er Bulk Image Downloader From List?

Bulk Image Downloader From List er en Chrome-udvidelse udviklet af danstanongubo, og dens hovedfunktion er "A Chrome extension to bulk download images from a list of image urls.".

Udvidelsesskærmbilleder

screenshot

Download Bulk Image Downloader From List-udvidelses-CRX-fil

Download Bulk Image Downloader From List-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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!                    

Grundlæggende oplysninger om udvidelsen

Navn Bulk Image Downloader From List Bulk Image Downloader From List
ID kekkjfalendfifgchoceceoahjnejmgf
Officiel URL https://chromewebstore.google.com/detail/bulk-image-downloader-fro/kekkjfalendfifgchoceceoahjnejmgf
Beskrivelse A Chrome extension to bulk download images from a list of image urls.
Filstørrelse 5.02 KB
Antal Installationer 2,098
Nuværende Version 1.0
Senest Opdateret 2023-09-11
Udgivelsesdato 2023-09-11
Bedømmelse 5.00/5 Samlet 14 Bedømmelser
Udvikler danstanongubo
E-mail [email protected]
Betalingsmetode free
Understøttede Sprog 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"
            ]
        }
    ]
}