Image Checker

Check for incorrectly resized and single-pixel images

Image Checker क्या है?

Image Checker https://www.samdutton.com द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Check for incorrectly resized and single-pixel images"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Image Checker एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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.                    

एक्सटेंशन की मूल जानकारी

नाम Image Checker Image Checker
ID bacnicogfgpigmmenfiplfiofpkocpii
आधिकारिक URL https://chromewebstore.google.com/detail/image-checker/bacnicogfgpigmmenfiplfiofpkocpii
विवरण Check for incorrectly resized and single-pixel images
फ़ाइल का आकार 19.32 KB
स्थापना संख्या 437
वर्तमान संस्करण 1.3
अंतिम अपडेट 2013-02-22
प्रकाशन तिथि 2013-02-22
रेटिंग 3.50/5 कुल 2 रेटिंग्स
डेवलपर https://www.samdutton.com
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट http://www.samdutton.com
सहायता पृष्ठ URL https://github.com/samdutton/imageCheck
समर्थित भाषाएँ 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": []
}