Image Downloader

Download any image on your website page in one click!

什麼是Image Downloader?

Image Downloader是由tiffanycheck.check開發的Chrome擴展程式,該擴展的主要功能是“Download any image on your website page in one click!”。

擴展截圖

screenshot
screenshot

下載Image Downloader擴展crx文件

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

擴展使用說明

                        The extension gives the user the option to download images in different formats: PNG, JPG, SVG, WEBP                    

擴展基本資訊

名稱 Image Downloader Image Downloader
ID fnelomgkbbanddlflhgphgkijfeoehfb
官方網址 https://chrome.google.com/webstore/detail/image-downloader/fnelomgkbbanddlflhgphgkijfeoehfb
簡介 Download any image on your website page in one click!
檔案大小 19.54 KB
安裝次數 3,519
目前版本 1.1
更新時間 2022-12-05
上架時間 2022-11-28
開發者 tiffanycheck.check
電子郵箱 [email protected]
付費類型 free
擴展官網 https://home.xcxologyda.xyz/
說明頁面URL https://home.xcxologyda.xyz/contact.html
支援的語言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "action": {
        "default_icon": "logo.png",
        "default_title": "Image Downloader",
        "default_popup": "popup.html"
    },
    "description": "Download any image on your website page in one click!",
    "icons": {
        "128": "logo.png"
    },
    "manifest_version": 3,
    "name": "Image Downloader",
    "version": "1.1",
    "background": {
        "service_worker": "background.js"
    },
    "permissions": [
        "storage"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "icons\/*.svg"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ]
        }
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "host_permissions": [
        "*:\/\/*\/*"
    ]
}