get the image!

This allows you to download a batch zip of images from a web page's documentation and css.

什麼是get the image!?

get the image!是由kapy開發的Chrome擴展程式,該擴展的主要功能是“This allows you to download a batch zip of images from a web page's documentation and css.”。

擴展截圖

screenshot

下載get the image!擴展crx文件

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

擴展使用說明

                        Are you a web developer?
Have you ever thought, "I want to copy a cool LP" or "I want to know the total number of images used"? This extension allows you to download a batch zip file of all the images used in an open page.
It's an extension, so you don't need to worry about compatibility.
Happy development life!

Attention!

The acceptability of files from other than the same domain depends on the server settings.
Also, among the html attributes, the following four types are supported by default. For any other attributes you wish to obtain, please enter them in the text box.
  - src
  - srcset
  - data-src
  - data-srcset                    

擴展基本資訊

名稱 get the image! get the image!
ID pbpnjlcchelkilcpkamkonhgpacjbibc
官方網址 https://chromewebstore.google.com/detail/get-the-image/pbpnjlcchelkilcpkamkonhgpacjbibc
簡介 This allows you to download a batch zip of images from a web page's documentation and css.
檔案大小 108 KB
安裝次數 26
目前版本 1.1.0
更新時間 2021-10-14
上架時間 2021-09-21
評分 5.00/5 共 1 次評分
開發者 kapy
電子郵箱 [email protected]
付費類型 free
支援的語言 ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "get the image!",
    "version": "1.1.0",
    "manifest_version": 2,
    "description": "This allows you to download a batch zip of images from a web page's documentation and css.",
    "browser_action": {
        "default_popup": "index.html"
    },
    "icons": {
        "16": "img\/240770894_197005722494949_3678857227278718278_n.png",
        "48": "img\/240770894_197005722494949_3678857227278718278_n.png",
        "128": "img\/240770894_197005722494949_3678857227278718278_n.png"
    },
    "permissions": [
        "http:\/\/*\/*\/",
        "https:\/\/*\/*\/"
    ],
    "content_scripts": [
        {
            "js": [
                "content_script.js",
                "jszip.js"
            ],
            "run_at": "document_end",
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ]
        }
    ]
}