Image Checker
Check for incorrectly resized and single-pixel images
Qu'est-ce que Image Checker ?
Image Checker est une extension Chrome développée par https://www.samdutton.com, et sa fonction principale est "Check for incorrectly resized and single-pixel images".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Image Checker
Téléchargez les fichiers d'extension Image Checker au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | Image Checker |
ID | bacnicogfgpigmmenfiplfiofpkocpii |
URL Officiel | https://chromewebstore.google.com/detail/image-checker/bacnicogfgpigmmenfiplfiofpkocpii |
Description | Check for incorrectly resized and single-pixel images |
Taille du Fichier | 19.32 KB |
Nombre d'Installations | 437 |
Version Actuelle | 1.3 |
Dernière Mise à Jour | 2013-02-22 |
Date de Publication | 2013-02-22 |
Évaluation | 3.50/5 Total 2 Évaluations |
Développeur | https://www.samdutton.com |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | http://www.samdutton.com |
URL de la Page d'Aide | https://github.com/samdutton/imageCheck |
Langues Prises en Charge | 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": [] } |