Image Checker

Check for incorrectly resized and single-pixel images

Vad är Image Checker?

Image Checker är en Chrome-tillägg utvecklad av https://www.samdutton.com, och dess huvudfunktion är "Check for incorrectly resized and single-pixel images".

Tilläggsskärmbilder

screenshot

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

Ladda ner 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

                        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.                    

Grundläggande Information om Tillägg

Namn Image Checker Image Checker
ID bacnicogfgpigmmenfiplfiofpkocpii
Officiell webbadress https://chromewebstore.google.com/detail/image-checker/bacnicogfgpigmmenfiplfiofpkocpii
Beskrivning Check for incorrectly resized and single-pixel images
Filstorlek 19.32 KB
Antal Installationer 437
Aktuell Version 1.3
Senast Uppdaterad 2013-02-22
Publiceringsdatum 2013-02-22
Betyg 3.50/5 Totalt 2 Betyg
Utvecklare https://www.samdutton.com
E-post [email protected]
Betalningssätt free
Tilläggswebbplats http://www.samdutton.com
Hjälpsida URL https://github.com/samdutton/imageCheck
Stödda Språk 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": []
}