Bulk Image Downloader
A script that downloads images in bulk
Was ist Bulk Image Downloader?
Bulk Image Downloader ist eine Chrome-Erweiterung, die von mehulpillaidev25 entwickelt wurde, und ihr Hauptmerkmal ist "A script that downloads images in bulk".
Erweiterungsscreenshots
Bulk Image Downloader-Erweiterungs-CRX-Datei herunterladen
Laden Sie Bulk Image Downloader-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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.
Grundlegende Informationen zur Erweiterung
Name | Bulk Image Downloader |
ID | jeimgidkmgobaokpidmjojfjhhgchcan |
Offizielle URL | https://chromewebstore.google.com/detail/bulk-image-downloader/jeimgidkmgobaokpidmjojfjhhgchcan |
Beschreibung | A script that downloads images in bulk |
Dateigröße | 17.8 KB |
Installationsanzahl | 29 |
Aktuelle Version | 1.0 |
Letztes Update | 2021-01-12 |
Veröffentlichungsdatum | 2021-01-12 |
Entwickler | mehulpillaidev25 |
[email protected] | |
Zahlungsart | free |
Unterstützte Sprachen | 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'" } |