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"입니다.

확장 프로그램 스크린샷

screenshot

Bulk Image Downloader 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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.                    

확장 프로그램 기본 정보

이름 Bulk Image Downloader Bulk Image Downloader
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'"
}