NCC Image Checker

Provides image optimisation information within the browser.

Was ist NCC Image Checker?

NCC Image Checker ist eine Chrome-Erweiterung, die von NCC Group Web Performance entwickelt wurde, und ihr Hauptmerkmal ist "Provides image optimisation information within the browser.".

Erweiterungsscreenshots

screenshot
screenshot
screenshot

NCC Image Checker-Erweiterungs-CRX-Datei herunterladen

Laden Sie NCC Image Checker-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name NCC Image Checker NCC Image Checker
ID fphiheficgnpphmjdliclanppccfgifl
Offizielle URL https://chromewebstore.google.com/detail/ncc-image-checker/fphiheficgnpphmjdliclanppccfgifl
Beschreibung Provides image optimisation information within the browser.
Dateigröße 28.28 KB
Installationsanzahl 780
Aktuelle Version 1.5.0
Letztes Update 2017-07-24
Veröffentlichungsdatum 2017-07-24
Bewertung 5.00/5 Insgesamt 7 Bewertungen
Entwickler NCC Group Web Performance
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://www.nccgroup.trust/uk/our-services/website-performance/
Hilfeseite URL https://github.com/nccgroup/image-checker/issues
URL der Datenschutzrichtlinien-Seite https://www.nccgroup.trust/uk/about-us/privacy-policy
Unterstützte Sprachen 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"
}