Image Checker
Check for incorrectly resized and single-pixel images
Wat is Image Checker?
Image Checker is een Chrome-extensie ontwikkeld door https://www.samdutton.com, en de belangrijkste functie is "Check for incorrectly resized and single-pixel images".
Extensie Screenshots
Download het CRX-bestand van de extensie Image Checker
Download Image Checker-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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.
Basisinformatie over de Extensie
Naam | Image Checker |
ID | bacnicogfgpigmmenfiplfiofpkocpii |
Officiële URL | https://chromewebstore.google.com/detail/image-checker/bacnicogfgpigmmenfiplfiofpkocpii |
Beschrijving | Check for incorrectly resized and single-pixel images |
Bestandsgrootte | 19.32 KB |
Aantal Installaties | 437 |
Huidige Versie | 1.3 |
Laatst Bijgewerkt | 2013-02-22 |
Publicatiedatum | 2013-02-22 |
Beoordeling | 3.50/5 Totaal 2 Beoordelingen |
Ontwikkelaar | https://www.samdutton.com |
[email protected] | |
Betalingswijze | free |
Extensiewebsite | http://www.samdutton.com |
Help Pagina-URL | https://github.com/samdutton/imageCheck |
Ondersteunde Talen | 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": [] } |