Download All Images

Easily save images with a wide range of customization features, such as file size, dimensions, and image type.

Download All Imagesคืออะไร?

Download All Images เป็นส่วนขยายของ Chrome ที่พัฒนาโดย MeryDev และคุณลักษณะหลักของมันคือ "Easily save images with a wide range of customization features, such as file size, dimensions, and image type."

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

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Download All Images

ดาวน์โหลดไฟล์ส่วนขยาย Download All Images ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        This is a bulk image downloader to extract all photos from the current web page. This online image downloader provides highly customizable filters based on file size, image size, and more!

Usage Preview:
https://www.youtube.com/watch?v=YaT5sWRV6JQ

Features:
1. Detects all images loaded on the current web page (even if they're nested iframes)
2. Filters images by file size, dimension, URL or type
3. Finds images in links, background scripts, and CSS files
4. Displays images in a gallery view before downloading 

Filters:
1. Filter by file size
2. Filter by image dimension
3. Filter by image type
4. Filter by image URL (regular expression matching)
5. Filter by same-origin policy
6. Detect image width and height by downloading only the header section of the image

Features:
1. Bulk download images
2. Filter based on file properties
3. Filter based on image properties such as width and height
4. Deep image search (extract images from the current page and subsequent pages)
6. Can detect single image path
7. Can download photos in ZIP format
8. Can detect the original image size from thumbnail

Bug reports:
https://github.com/belaviyo/save-images/issues

Download location:
By pressing the "Save" button, the extension downloads all selected images in the default download directory or a specified subfolder.

Change Log:
Version 0.1.1
1. The extension now stores images in a sub-folder (the default sub-folder name is the domain's name)
2. One security bug is fixed.
Version 0.2.0
1. Images are now saved in a zip archive to prevent multiple downloads and better file-naming
2. The image detection algorithm is improved.
Version 0.2.1
1. User preferences are now persistent. It is still possible to reset them from the UI
2. It is now possible to ask for "Save Dialog" from the UI
3. There is progress indicating how many images proceed
4. UI closes itself when all images are downloaded.
Version 0.2.2
1. Deep image searching through all links (up to two levels)
2. Updates JSZip library
Version 0.3.4
1. You can now open "Gallery View" in a new browser tab
2. You can now click on a single image in the "Gallery View"
3. It is possible to download images from multiple tabs at once
Version 0.3.7
1. Two new filters: remove identical images and remove images with forbidden keywords
2. It is now possible to stop the image spider from the UI without closing it
Version 0.5.6
 1. Deeps search level 3 (search for both links and images in the destination HTML pages)
2. Custom RegExp filters to increase the searching speed.
Version 0.9.0
1. Moves to manifest v3
2. Internal module to detect image width and height only by downloading the header section
3. Detects images first, then detects other mime types
4. The extraction of hard-coded image links is improved                    

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

ชื่อ Download All Images Download All Images
ID nnffbdeachhbpfapjklmpnmjcgamcdmm
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/download-all-images/nnffbdeachhbpfapjklmpnmjcgamcdmm
คำอธิบาย Easily save images with a wide range of customization features, such as file size, dimensions, and image type.
ขนาดไฟล์ 152 KB
จำนวนการติดตั้ง 101,230
เวอร์ชันปัจจุบัน 1.0.6
อัปเดตครั้งล่าสุด 2024-01-28
วันที่เผยแพร่ 2020-05-28
คะแนน 4.35/5 รวมทั้งหมด 210 คะแนน
ผู้พัฒนา MeryDev
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://webextension.org/listing/save-images.html
URL หน้าช่วยเหลือ https://webextension.org/listing/save-images.html
URL หน้านโยบายความเป็นส่วนตัว https://add0n.com/policies/mery.dev.txt
ภาษาที่รองรับ en,hu
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "version": "1.0.6",
    "name": "Download All Images",
    "description": "__MSG_app_description__",
    "default_locale": "en",
    "permissions": [
        "storage",
        "activeTab",
        "scripting",
        "notifications",
        "downloads",
        "unlimitedStorage",
        "declarativeNetRequest"
    ],
    "host_permissions": [
        ""
    ],
    "background": {
        "service_worker": "worker.js"
    },
    "action": [],
    "icons": {
        "16": "data\/icons\/16.png",
        "32": "data\/icons\/32.png",
        "48": "data\/icons\/48.png",
        "64": "data\/icons\/64.png",
        "128": "data\/icons\/128.png",
        "256": "data\/icons\/256.png",
        "512": "data\/icons\/512.png"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "data\/inject\/core\/index.html",
                "data\/ui\/index.html",
                "data\/gallery\/index.html"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "homepage_url": "https:\/\/webextension.org\/listing\/save-images.html",
    "options_ui": {
        "open_in_tab": true,
        "page": "data\/options\/index.html"
    },
    "incognito": "split",
    "commands": {
        "_execute_action": {
            "description": "Press the action button"
        }
    }
}