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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "A Chrome extension to bulk download images from a list of image urls."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Bulk Image Downloader From List एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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
आधिकारिक URL 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"
            ]
        }
    ]
}