Image Checker
Check for incorrectly resized and single-pixel images
What is Image Checker?
Image Checker is a Chrome extension developed by https://www.samdutton.com, and its main feature is "Check for incorrectly resized and single-pixel images".
Extension Screenshots
Download Image Checker Extension CRX File
Download Image Checker extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | Image Checker |
ID | bacnicogfgpigmmenfiplfiofpkocpii |
Official URL | https://chromewebstore.google.com/detail/image-checker/bacnicogfgpigmmenfiplfiofpkocpii |
Description | Check for incorrectly resized and single-pixel images |
File Size | 19.32 KB |
Installation Count | 437 |
Current Version | 1.3 |
Last Updated | 2013-02-22 |
Publish Date | 2013-02-22 |
Rating | 3.50/5 Total 2 Ratings |
Developer | https://www.samdutton.com |
[email protected] | |
Payment Type | free |
Extension Website | http://www.samdutton.com |
Help Page URL | https://github.com/samdutton/imageCheck |
Supported Languages | 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": [] } |