Bulk Image Downloader

A script that downloads images in bulk

Bulk Image Downloaderคืออะไร?

Bulk Image Downloader เป็นส่วนขยายของ Chrome ที่พัฒนาโดย mehulpillaidev25 และคุณลักษณะหลักของมันคือ "A script that downloads images in bulk"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Bulk Image Downloader

ดาวน์โหลดไฟล์ส่วนขยาย 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.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ 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'"
}