NCC Image Checker

Provides image optimisation information within the browser.

什麼是NCC Image Checker?

NCC Image Checker是由NCC Group Web Performance開發的Chrome擴展程式,該擴展的主要功能是“Provides image optimisation information within the browser.”。

擴展截圖

screenshot
screenshot
screenshot

下載NCC Image Checker擴展crx文件

下載NCC Image Checker擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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.                    

擴展基本資訊

名稱 NCC Image Checker NCC Image Checker
ID fphiheficgnpphmjdliclanppccfgifl
官方網址 https://chromewebstore.google.com/detail/ncc-image-checker/fphiheficgnpphmjdliclanppccfgifl
簡介 Provides image optimisation information within the browser.
檔案大小 28.28 KB
安裝次數 780
目前版本 1.5.0
更新時間 2017-07-24
上架時間 2017-07-24
評分 5.00/5 共 7 次評分
開發者 NCC Group Web Performance
電子郵箱 [email protected]
付費類型 free
擴展官網 https://www.nccgroup.trust/uk/our-services/website-performance/
說明頁面URL https://github.com/nccgroup/image-checker/issues
隱私政策頁面URL https://www.nccgroup.trust/uk/about-us/privacy-policy
支援的語言 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"
}