Image Checker

Check for incorrectly resized and single-pixel images

Apa itu Image Checker?

Image Checker adalah ekstensi Chrome yang dikembangkan oleh https://www.samdutton.com, dan fitur utamanya adalah "Check for incorrectly resized and single-pixel images".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Image Checker

Unduh file ekstensi Image Checker dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        Checks for resized images by comparing the width and height of each img element with the naturalWidth and naturalHeight.

Highlights resized images, single pixel images and warns if aspect ratio is changed.                    

Informasi Dasar Ekstensi

Nama Image Checker Image Checker
ID bacnicogfgpigmmenfiplfiofpkocpii
URL Resmi https://chromewebstore.google.com/detail/image-checker/bacnicogfgpigmmenfiplfiofpkocpii
Deskripsi Check for incorrectly resized and single-pixel images
Ukuran File 19.32 KB
Jumlah Instalasi 437
Versi Saat Ini 1.3
Terakhir Diperbarui 2013-02-22
Tanggal Publikasi 2013-02-22
Penilaian 3.50/5 Total 2 Penilaian
Pengembang https://www.samdutton.com
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi http://www.samdutton.com
URL Halaman Bantuan https://github.com/samdutton/imageCheck
Bahasa yang Didukung en-GB
manifest.json
{
    "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Image Checker",
    "version": "1.3",
    "manifest_version": 2,
    "description": "Check for incorrectly resized and single-pixel images",
    "background": {
        "scripts": [
            "js\/background.js"
        ],
        "persistent": true
    },
    "browser_action": {
        "default_icon": "images\/imageCheck22.png",
        "default_popup": "popup.html",
        "default_title": "Click to check for resized images"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "css": [
                "css\/injected.css"
            ],
            "js": [
                "js\/contentscript.js"
            ],
            "run_at": "document_end",
            "all_frames": false
        }
    ],
    "icons": {
        "16": "images\/imageCheck16.png",
        "22": "images\/imageCheck22.png",
        "32": "images\/imageCheck32.png",
        "48": "images\/imageCheck48.png",
        "128": "images\/imageCheck128.png"
    },
    "permissions": []
}