Image Checker
Check for incorrectly resized and single-pixel images
Cos'è Image Checker?
Image Checker è un'estensione di Chrome sviluppata da https://www.samdutton.com, e la sua funzione principale è "Check for incorrectly resized and single-pixel images".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Image Checker
Scarica i file di estensione Image Checker in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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.
Informazioni di Base sull'Estensione
Nome | Image Checker |
ID | bacnicogfgpigmmenfiplfiofpkocpii |
URL Ufficiale | https://chromewebstore.google.com/detail/image-checker/bacnicogfgpigmmenfiplfiofpkocpii |
Descrizione | Check for incorrectly resized and single-pixel images |
Dimensione del File | 19.32 KB |
Conteggio Installazioni | 437 |
Versione Corrente | 1.3 |
Ultimo Aggiornamento | 2013-02-22 |
Data di Pubblicazione | 2013-02-22 |
Valutazione | 3.50/5 Totale 2 Valutazioni |
Sviluppatore | https://www.samdutton.com |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | http://www.samdutton.com |
URL della Pagina di Aiuto | https://github.com/samdutton/imageCheck |
Lingue Supportate | 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": [] } |