Bulk Image Downloader
A script that downloads images in bulk
什么是Bulk Image Downloader?
Bulk Image Downloader是由mehulpillaidev25开发的Chrome扩展程序,该扩展的主要功能是“A script that downloads images in bulk”。
扩展截图
下载Bulk Image Downloader扩展crx文件
下载Bulk Image Downloader扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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. 扩展基本信息
| 名称 | |
| ID | jeimgidkmgobaokpidmjojfjhhgchcan |
| 官方URL | https://chromewebstore.google.com/detail/bulk-image-downloader/jeimgidkmgobaokpidmjojfjhhgchcan |
| 简介 | A script that downloads images in bulk |
| 文件大小 | 17.8 KB |
| 安装次数 | 29 |
| 当前版本 | 1.0 |
| 更新时间 | 2021-01-12 |
| 上架时间 | 2021-01-12 |
| 开发者 | mehulpillaidev25 |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 支持的语言 | 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'"
} | |