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 |
| Eメール | [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'"
} | |