Bulk Image Downloader
A script that downloads images in bulk
Cos'è Bulk Image Downloader?
Bulk Image Downloader è un'estensione di Chrome sviluppata da mehulpillaidev25, e la sua funzione principale è "A script that downloads images in bulk".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Bulk Image Downloader
Scarica i file di estensione Bulk Image Downloader in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
                        A simple chrome extension that uses a script to download all images opened in a new tab
- Right click on any image element and click the "add image to download list" option to quickly add the image to the download list.
- Select all the images present on the page.
- Set minimum height and width filters.
- Remove selected image by clicking on it in the popup.
- Download images open in new tab.                     Informazioni di Base sull'Estensione
| Nome |   |  
| ID | jeimgidkmgobaokpidmjojfjhhgchcan | 
| URL Ufficiale | https://chromewebstore.google.com/detail/bulk-image-downloader/jeimgidkmgobaokpidmjojfjhhgchcan | 
| Descrizione | A script that downloads images in bulk | 
| Dimensione del File | 17.8 KB | 
| Conteggio Installazioni | 29 | 
| Versione Corrente | 1.0 | 
| Ultimo Aggiornamento | 2021-01-12 | 
| Data di Pubblicazione | 2021-01-12 | 
| Sviluppatore | mehulpillaidev25 | 
| [email protected] | |
| Tipo di Pagamento | free | 
| Lingue Supportate | en | 
| manifest.json | |
 {
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Bulk Image Downloader",
    "version": "1.0",
    "description": "A script that downloads images in bulk",
    "manifest_version": 2,
    "permissions": [
        "activeTab",
        "tabs",
        "storage",
        "downloads",
        "contextMenus",
        "unlimitedStorage"
    ],
    "background": {
        "scripts": [
            "startup.js"
        ],
        "persistent": true
    },
    "browser_action": {
        "default_popup": "popup.html"
    },
    "options_ui": {
        "page": "options.html",
        "open_in_tab": false
    },
    "icons": {
        "48": "assets\/icon48.png",
        "128": "assets\/icon128.png"
    },
    "content_security_policy": "script-src 'self' https:\/\/cdnjs.cloudflare.com\/ajax\/libs\/materialize\/1.0.0\/js\/materialize.min.js https:\/\/kit.fontawesome.com\/aa3aeafa8a.js; object-src 'self'"
}  |  |