Image Checker

Check for incorrectly resized and single-pixel images

Co to jest Image Checker?

Image Checker to rozszerzenie Chrome opracowane przez https://www.samdutton.com, a jego główną funkcją jest „Check for incorrectly resized and single-pixel images”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Image Checker

Pobierz pliki rozszerzeń 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

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Image Checker Image Checker
ID bacnicogfgpigmmenfiplfiofpkocpii
Oficjalny URL https://chromewebstore.google.com/detail/image-checker/bacnicogfgpigmmenfiplfiofpkocpii
Opis Check for incorrectly resized and single-pixel images
Rozmiar pliku 19.32 KB
Liczba instalacji 437
Aktualna Wersja 1.3
Ostatnia Aktualizacja 2013-02-22
Data Publikacji 2013-02-22
Ocena 3.50/5 Łącznie 2 Oceny
Deweloper https://www.samdutton.com
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia http://www.samdutton.com
Adres URL Strony Pomocy https://github.com/samdutton/imageCheck
Obsługiwane Języki 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": []
}