Bulk Image Downloader From List

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

¿Qué es Bulk Image Downloader From List?

Bulk Image Downloader From List es una extensión de Chrome desarrollada por danstanongubo, y su función principal es "A Chrome extension to bulk download images from a list of image urls.".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión Bulk Image Downloader From List

Descarga archivos de extensión Bulk Image Downloader From List en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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!                    

Información Básica de la Extensión

Nombre Bulk Image Downloader From List Bulk Image Downloader From List
ID kekkjfalendfifgchoceceoahjnejmgf
URL Oficial https://chromewebstore.google.com/detail/bulk-image-downloader-fro/kekkjfalendfifgchoceceoahjnejmgf
Descripción A Chrome extension to bulk download images from a list of image urls.
Tamaño del Archivo 5.02 KB
Cantidad de Instalaciones 2,098
Versión Actual 1.0
Última Actualización 2023-09-11
Fecha de Publicación 2023-09-11
Calificación 5.00/5 Total de 14 Calificaciones
Desarrollador danstanongubo
Correo electrónico [email protected]
Tipo de Pago free
Idiomas Soportados 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"
            ]
        }
    ]
}