Image Downloader

Images can be extracted and batch downloaded from most websites. Especially for websites the right click fails or image cant save

什麼是Image Downloader?

Image Downloader是由fatogregnome開發的Chrome擴展程式,該擴展的主要功能是“Images can be extracted and batch downloaded from most websites. Especially for websites the right click fails or image cant save”。

擴展截圖

screenshot
screenshot
screenshot

下載Image Downloader擴展crx文件

下載Image Downloader擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        How to use
Basic usage
There are two ways to open the script page,
1. Shortcut keys, alt+w, it is best to use this method to open websites such as Yaoqi, Tencent Comics, B station, etc.

2. click the popup button

Extended Features
Modify download file name
The script will automatically generate a download file name with a domain name + timestamp, you can also manually modify it to the file name you need.

zip download
Using zip download, you can compress and pack all pictures into a zip file for download, so when you download multiple pictures, you only need to download a zip package, and you do not need to open a download link for each picture.
Now a zip download option has been added, which is disabled by default. If you do not use zip download, you do not need to open this option.
Turning on the zip option will require a cross-domain request. Most images cannot be packaged into a zip package without cross-domain. It is recommended to allow all domain names to cross domains after each update of the script, and the script is open source.

Auto-enlarge image
When there are multiple specifications of pictures in the website, the large picture/original picture is automatically obtained. When obtaining, the original picture displayed on the website will be retained, and the corresponding large picture will also be automatically obtained.
Manual configuration
Write a txt file, then write the rules in the following format, and then use "Import Custom Rules" to import
[
{originReg:/(?<=(.+sinaimg\.(?:cn|com)\/))([\w\.]+)(?=(\/.+))/i,replacement:" large",tip:"for Sina Weibo"},
]
The outside is an array, the inside is an object, originReg corresponds to a parameter of the replace function, replacement corresponds to the second parameter of the replace function, and tip is a prompt description
List of websites that support automatic large images by default
I wrote it in the script, the default list of websites that support automatic large pictures, you are also welcome to leave a message in the feedback area to add more automatic large picture websites
weibo.com, Taobao websites (taobao.com, tmall.com, aliexpress.com, 1688.com), jd.com, bilibili.com, wallhaven.cc


Export image address
It is best to remove the zip download option when exporting the image url, otherwise the exported address has been converted to base64 format, so the file will be very large.

Additional Notes
First, it is currently only suitable for the combination of chrome+tampermonkey, the chromium kernel used by the edge browser, I have tried several websites, and most of them should be fine. There is a good chance that other combinations are problematic. Because the adaptation is too troublesome, there is no plan to make other combinations of adaptations for the time being.
Second, the script can run on all websites, but each website has different strategies and the results of running are also different. Therefore, for feedback, you need to bring a specific website, preferably a specific webpage
Three, comics download, I have tried B station and Tencent comics, and they are demonic.
Note:
You can already download the comics from station b. There are two reading modes for station b comics:
One is to load many words at one time, because too many pictures are loaded at one time, and the pictures need to be obtained asynchronously after opening the script. But the download is very cool, as long as you drag it to the end and load all the pictures, you can download dozens of words at one time. (When it is not dragged to the end, there will be many blank large pictures, so if you want to download it, you must manually drag it yourself. After dragging it to the end, open the script page to download). The slow loading is also because the B station adds a layer of canvas to the picture. You need to crack his canvas restrictions before downloading. Even if there are many pictures on a normal website, it will not cause the opening of the script page to be very slow.
The second is that the current reading will be displayed, the previous reading will be destroyed, and the subsequent ones will not be preloaded. In this reading mode, opening scripts is as fast as any other website, but only one or two pages of comics can be downloaded at a time.                    

擴展基本資訊

名稱 Image Downloader Image Downloader
ID dgnafboabnkflcpieoekojogfkfdcboj
官方網址 https://chromewebstore.google.com/detail/image-downloader/dgnafboabnkflcpieoekojogfkfdcboj
簡介 Images can be extracted and batch downloaded from most websites. Especially for websites the right click fails or image cant save
檔案大小 68.9 KB
安裝次數 275
目前版本 1.01
更新時間 2022-06-18
上架時間 2022-02-16
開發者 fatogregnome
電子郵箱 [email protected]
付費類型 free
隱私政策頁面URL http://47.111.249.202/privacy.txt
支援的語言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Image Downloader",
    "description": "Images can be extracted and batch downloaded from most websites. Especially for websites the right click fails or image cant save",
    "version": "1.01",
    "manifest_version": 3,
    "background": {
        "service_worker": "background.js"
    },
    "permissions": [
        "storage",
        "activeTab"
    ],
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "\/images\/get_started16.png",
            "32": "\/images\/get_started32.png",
            "48": "\/images\/get_started48.png",
            "128": "\/images\/get_started128.png"
        }
    },
    "icons": {
        "16": "\/images\/get_started16.png",
        "32": "\/images\/get_started32.png",
        "48": "\/images\/get_started48.png",
        "128": "\/images\/get_started128.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "hotkeys.min.js",
                "jszip.js",
                "FileSaver.min.js",
                "gmOverRide.js",
                "content-script.js"
            ]
        }
    ]
}