NCC Image Checker

Provides image optimisation information within the browser.

Cos'è NCC Image Checker?

NCC Image Checker è un'estensione di Chrome sviluppata da NCC Group Web Performance, e la sua funzione principale è "Provides image optimisation information within the browser.".

Screenshot dell'Estensione

screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione NCC Image Checker

Scarica i file di estensione NCC Image Checker in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome NCC Image Checker NCC Image Checker
ID fphiheficgnpphmjdliclanppccfgifl
URL Ufficiale https://chromewebstore.google.com/detail/ncc-image-checker/fphiheficgnpphmjdliclanppccfgifl
Descrizione Provides image optimisation information within the browser.
Dimensione del File 28.28 KB
Conteggio Installazioni 780
Versione Corrente 1.5.0
Ultimo Aggiornamento 2017-07-24
Data di Pubblicazione 2017-07-24
Valutazione 5.00/5 Totale 7 Valutazioni
Sviluppatore NCC Group Web Performance
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://www.nccgroup.trust/uk/our-services/website-performance/
URL della Pagina di Aiuto https://github.com/nccgroup/image-checker/issues
URL della Pagina della Politica sulla Privacy https://www.nccgroup.trust/uk/about-us/privacy-policy
Lingue Supportate 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"
}