NCC Image Checker

Provides image optimisation information within the browser.

Vad är NCC Image Checker?

NCC Image Checker är en Chrome-tillägg utvecklad av NCC Group Web Performance, och dess huvudfunktion är "Provides image optimisation information within the browser.".

Tilläggsskärmbilder

screenshot
screenshot
screenshot

Ladda ner NCC Image Checker-förlängningens CRX-fil

Ladda ner NCC Image Checker-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn NCC Image Checker NCC Image Checker
ID fphiheficgnpphmjdliclanppccfgifl
Officiell webbadress https://chromewebstore.google.com/detail/ncc-image-checker/fphiheficgnpphmjdliclanppccfgifl
Beskrivning Provides image optimisation information within the browser.
Filstorlek 28.28 KB
Antal Installationer 780
Aktuell Version 1.5.0
Senast Uppdaterad 2017-07-24
Publiceringsdatum 2017-07-24
Betyg 5.00/5 Totalt 7 Betyg
Utvecklare NCC Group Web Performance
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://www.nccgroup.trust/uk/our-services/website-performance/
Hjälpsida URL https://github.com/nccgroup/image-checker/issues
URL till Sekretesspolicy Sidan https://www.nccgroup.trust/uk/about-us/privacy-policy
Stödda Språk 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"
}