Image Collector

Shows preview of the page images and provide options to download

什么是Image Collector?

Image Collector是由rajesh64727开发的Chrome扩展程序,该扩展的主要功能是“Shows preview of the page images and provide options to download”。

扩展截图

screenshot
screenshot

下载Image Collector扩展crx文件

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

扩展使用说明

                        Provides 2 modes
1. Thumbnail preview, image dimensions, loading time with download option.
2. URLs list in plain text

Useful for web developers, testers and designers.

Banner images are from JumpStart.com public website.

Suggestions and constructive comments are welcome.

*updates 
1.1.0 - Includes element background image URLs as well.                    

扩展基本信息

名称 Image Collector Image Collector
ID facfdjdppldcgnfhdbknokkbnfhdiofl
官方URL https://chromewebstore.google.com/detail/image-collector/facfdjdppldcgnfhdbknokkbnfhdiofl
简介 Shows preview of the page images and provide options to download
文件大小 14.33 KB
安装次数 1,123
当前版本 1.1.0
更新时间 2021-09-14
上架时间 2020-06-20
评分 4.40/5 共5次评分
开发者 rajesh64727
电子邮箱 [email protected]
付费类型 free
扩展官网 https://rajesh64727.github.io
隐私政策页面URL https://rajesh64727.github.io/privacy.html
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Image Collector",
    "version": "1.1.0",
    "description": "Shows preview of the page images and provide options to download",
    "browser_action": {
        "default_icon": "image_collector128.png",
        "default_popup": "popup.html"
    },
    "icons": {
        "128": "image_collector128.png"
    },
    "permissions": [
        "https:\/\/*\/*",
        "activeTab"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ]
}