NCC Image Checker

Provides image optimisation information within the browser.

¿Qué es NCC Image Checker?

NCC Image Checker es una extensión de Chrome desarrollada por NCC Group Web Performance, y su función principal es "Provides image optimisation information within the browser.".

Capturas de Pantalla de la Extensión

screenshot
screenshot
screenshot

Descargar Archivo CRX de la Extensión NCC Image Checker

Descarga archivos de extensión NCC 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

                        Sending images that are too big can damage site speed. This tool scans a whole page to identify all images and highlights those that are sent at the wrong size.                    

Información Básica de la Extensión

Nombre NCC Image Checker NCC Image Checker
ID fphiheficgnpphmjdliclanppccfgifl
URL Oficial https://chromewebstore.google.com/detail/ncc-image-checker/fphiheficgnpphmjdliclanppccfgifl
Descripción Provides image optimisation information within the browser.
Tamaño del Archivo 28.28 KB
Cantidad de Instalaciones 780
Versión Actual 1.5.0
Última Actualización 2017-07-24
Fecha de Publicación 2017-07-24
Calificación 5.00/5 Total de 7 Calificaciones
Desarrollador NCC Group Web Performance
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://www.nccgroup.trust/uk/our-services/website-performance/
URL de la Página de Ayuda https://github.com/nccgroup/image-checker/issues
URL de la Página de Política de Privacidad https://www.nccgroup.trust/uk/about-us/privacy-policy
Idiomas Soportados en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "NCC Image Checker",
    "short_name": "Image Checker",
    "description": "Provides image optimisation information within the browser.",
    "version": "1.5.0",
    "icons": {
        "16": "app\/assets\/icon.png",
        "48": "app\/assets\/icon.png",
        "128": "app\/assets\/icon.png"
    },
    "browser_action": {
        "default_icon": "app\/assets\/icon.png",
        "default_title": "NCC Image Checker",
        "default_popup": "app\/popup.html"
    },
    "options_ui": {
        "page": "app\/options.html",
        "chrome_style": true
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "css": [
                "app\/styles\/content.css"
            ],
            "js": [
                "app\/content.js",
                "app\/public.js"
            ],
            "run_at": "document_idle"
        }
    ],
    "content_security_policy": "script-src 'self' https:\/\/www.google-analytics.com; object-src 'self'",
    "permissions": [
        "activeTab",
        "tabs"
    ],
    "minimum_chrome_version": "54.0.2840"
}