Image extraction

Displays a list of the images used on the website.

什么是Image extraction?

Image extraction是由sato.magicword开发的Chrome扩展程序,该扩展的主要功能是“Displays a list of the images used on the website.”。

扩展截图

screenshot

下载Image extraction扩展crx文件

下载Image extraction扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        Displays a list of the images used on the website.
The images loaded with "" or "css:background" are the target of the list.

ウェブサイトで使用されている画像のリストを表示します。
「」または「css:background」で読み込まれた画像が対象です。
ウェブ上の画像を保存するのに最適です。                    

扩展基本信息

名称 Image extraction Image extraction
ID ceopbbecmahcocdoeadpakgmhmgjhaae
官方URL https://chrome.google.com/webstore/detail/image-extraction/ceopbbecmahcocdoeadpakgmhmgjhaae
简介 Displays a list of the images used on the website.
文件大小 8.81 KB
安装次数 117
当前版本 1.0.00.0000
更新时间 2020-05-19
上架时间 2020-05-19
开发者 sato.magicword
付费类型 free
扩展官网 https://kaminarimagazine.com/
支持的语言 ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Image extraction",
    "description": "Displays a list of the images used on the website.",
    "short_name": "Img ex",
    "version": "1.0.00.0000",
    "author": "Shinji Sato",
    "homepage_url": "https:\/\/kaminarimagazine.com\/",
    "icons": {
        "16": "image\/icon-16x16.png",
        "48": "image\/icon-48x48.png",
        "128": "image\/icon-128x128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "main.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_icon": {
            "19": "image\/icon-19x19.png"
        },
        "default_title": "Image List"
    },
    "permissions": [
        "tabs",
        "background",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ]
}