NCC Image Checker

Provides image optimisation information within the browser.

O que é NCC Image Checker?

NCC Image Checker é uma extensão do Chrome desenvolvida por NCC Group Web Performance, e sua principal característica é "Provides image optimisation information within the browser.".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão NCC Image Checker

Baixe arquivos de extensão NCC Image Checker no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome NCC Image Checker NCC Image Checker
ID fphiheficgnpphmjdliclanppccfgifl
URL Oficial https://chromewebstore.google.com/detail/ncc-image-checker/fphiheficgnpphmjdliclanppccfgifl
Descrição Provides image optimisation information within the browser.
Tamanho do Arquivo 28.28 KB
Contagem de Instalações 780
Versão Atual 1.5.0
Última Atualização 2017-07-24
Data de Publicação 2017-07-24
Classificação 5.00/5 Total de 7 Avaliações
Desenvolvedor NCC Group Web Performance
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://www.nccgroup.trust/uk/our-services/website-performance/
URL da Página de Ajuda https://github.com/nccgroup/image-checker/issues
URL da Página de Política de Privacidade https://www.nccgroup.trust/uk/about-us/privacy-policy
Idiomas Suportados 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"
}