NCC Image Checker

Provides image optimisation information within the browser.

Co to jest NCC Image Checker?

NCC Image Checker to rozszerzenie Chrome opracowane przez NCC Group Web Performance, a jego główną funkcją jest „Provides image optimisation information within the browser.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia NCC Image Checker

Pobierz pliki rozszerzeń NCC Image Checker w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa NCC Image Checker NCC Image Checker
ID fphiheficgnpphmjdliclanppccfgifl
Oficjalny URL https://chromewebstore.google.com/detail/ncc-image-checker/fphiheficgnpphmjdliclanppccfgifl
Opis Provides image optimisation information within the browser.
Rozmiar pliku 28.28 KB
Liczba instalacji 780
Aktualna Wersja 1.5.0
Ostatnia Aktualizacja 2017-07-24
Data Publikacji 2017-07-24
Ocena 5.00/5 Łącznie 7 Oceny
Deweloper NCC Group Web Performance
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://www.nccgroup.trust/uk/our-services/website-performance/
Adres URL Strony Pomocy https://github.com/nccgroup/image-checker/issues
Adres URL Strony Polityki Prywatności https://www.nccgroup.trust/uk/about-us/privacy-policy
Obsługiwane Języki 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"
}