Lenz Image Downloader

Download images from Instagram in a quality of your choice (supports high-quality image downloading)

什麼是Lenz Image Downloader?

Lenz Image Downloader是由emano.waldeck開發的Chrome擴展程式,該擴展的主要功能是“Download images from Instagram in a quality of your choice (supports high-quality image downloading)”。

擴展截圖

screenshot

下載Lenz Image Downloader擴展crx文件

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

擴展使用說明

                        With this tool, you can download high-quality images from Instagram pages. To use the extension, open a new page on Instagram or reload an existing page. The extension adds a new label to each image on the top left side of the images. Each label indicates the current image quality. By pressing each label, you will get the image on the default browser download's directory.

Features:
Supports 150, 240, 320, 480, 640, 750, and 1080 pixel qualities.
Supports renaming each image to include page title.
Based on Manifest V3 (do not use any resource when the extension is not used).
Saves images in the well-known JPEG/JPG format.

Developer Notes:
Unlike general-purpose image downloaders (such as Download All Images), this extension tries to grab the image links from HTML5's image "srcset" attribute. This is the fastest method to find available image resources.                    

擴展基本資訊

名稱 Lenz Image Downloader Lenz Image Downloader
ID jdkkapeblogkdcpcmdgnndkldahnaeeg
官方網址 https://chromewebstore.google.com/detail/lenz-image-downloader/jdkkapeblogkdcpcmdgnndkldahnaeeg
簡介 Download images from Instagram in a quality of your choice (supports high-quality image downloading)
檔案大小 127 KB
安裝次數 2,071
目前版本 0.2.0
更新時間 2021-09-01
上架時間 2019-11-10
評分 3.71/5 共 7 次評分
開發者 emano.waldeck
電子郵箱 [email protected]
付費類型 free
擴展官網 https://github.com/Emano-Waldeck/downloader-for-instagram/
說明頁面URL https://add0n.com/instagram-tool.html
支援的語言 de,en,fr,nl,es,it,pl,pt-BR,pt-PT,ru,zh-CN,ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "version": "0.2.0",
    "name": "Lenz Image Downloader",
    "description": "__MSG_description__",
    "default_locale": "en",
    "permissions": [
        "downloads",
        "storage"
    ],
    "background": {
        "service_worker": "worker.js"
    },
    "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"
    },
    "homepage_url": "https:\/\/add0n.com\/instagram-tool.html",
    "content_scripts": [
        {
            "matches": [
                "*:\/\/www.instagram.com\/*"
            ],
            "js": [
                "data\/inject.js"
            ],
            "css": [
                "data\/inject.css"
            ],
            "run_at": "document_start"
        }
    ]
}