Image Checker

Check for incorrectly resized and single-pixel images

¿Qué es Image Checker?

Image Checker es una extensión de Chrome desarrollada por https://www.samdutton.com, y su función principal es "Check for incorrectly resized and single-pixel images".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión Image Checker

Descarga archivos de extensión Image Checker en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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.                    

Información Básica de la Extensión

Nombre Image Checker Image Checker
ID bacnicogfgpigmmenfiplfiofpkocpii
URL Oficial https://chromewebstore.google.com/detail/image-checker/bacnicogfgpigmmenfiplfiofpkocpii
Descripción Check for incorrectly resized and single-pixel images
Tamaño del Archivo 19.32 KB
Cantidad de Instalaciones 437
Versión Actual 1.3
Última Actualización 2013-02-22
Fecha de Publicación 2013-02-22
Calificación 3.50/5 Total de 2 Calificaciones
Desarrollador https://www.samdutton.com
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión http://www.samdutton.com
URL de la Página de Ayuda https://github.com/samdutton/imageCheck
Idiomas Soportados 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": []
}