Image Checker

Check for incorrectly resized and single-pixel images

什么是Image Checker?

Image Checker是由https://www.samdutton.com开发的Chrome扩展程序,该扩展的主要功能是“Check for incorrectly resized and single-pixel images”。

扩展截图

screenshot

下载Image Checker扩展crx文件

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

扩展使用说明

                        Checks for resized images by comparing the width and height of each img element with the naturalWidth and naturalHeight.

Highlights resized images, single pixel images and warns if aspect ratio is changed.                    

扩展基本信息

名称 Image Checker Image Checker
ID bacnicogfgpigmmenfiplfiofpkocpii
官方URL https://chromewebstore.google.com/detail/image-checker/bacnicogfgpigmmenfiplfiofpkocpii
简介 Check for incorrectly resized and single-pixel images
文件大小 19.32 KB
安装次数 437
当前版本 1.3
更新时间 2013-02-22
上架时间 2013-02-22
评分 3.50/5 共2次评分
开发者 https://www.samdutton.com
电子邮箱 [email protected]
付费类型 free
扩展官网 http://www.samdutton.com
帮助页面URL https://github.com/samdutton/imageCheck
支持的语言 en-GB
manifest.json
{
    "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Image Checker",
    "version": "1.3",
    "manifest_version": 2,
    "description": "Check for incorrectly resized and single-pixel images",
    "background": {
        "scripts": [
            "js\/background.js"
        ],
        "persistent": true
    },
    "browser_action": {
        "default_icon": "images\/imageCheck22.png",
        "default_popup": "popup.html",
        "default_title": "Click to check for resized images"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "css": [
                "css\/injected.css"
            ],
            "js": [
                "js\/contentscript.js"
            ],
            "run_at": "document_end",
            "all_frames": false
        }
    ],
    "icons": {
        "16": "images\/imageCheck16.png",
        "22": "images\/imageCheck22.png",
        "32": "images\/imageCheck32.png",
        "48": "images\/imageCheck48.png",
        "128": "images\/imageCheck128.png"
    },
    "permissions": []
}