Image Checker
Check for incorrectly resized and single-pixel images
O que é Image Checker?
Image Checker é uma extensão do Chrome desenvolvida por https://www.samdutton.com, e sua principal característica é "Check for incorrectly resized and single-pixel images".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Image Checker
Baixe arquivos de extensão Image Checker no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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.
Informações Básicas da Extensão
Nome | Image Checker |
ID | bacnicogfgpigmmenfiplfiofpkocpii |
URL Oficial | https://chromewebstore.google.com/detail/image-checker/bacnicogfgpigmmenfiplfiofpkocpii |
Descrição | Check for incorrectly resized and single-pixel images |
Tamanho do Arquivo | 19.32 KB |
Contagem de Instalações | 437 |
Versão Atual | 1.3 |
Última Atualização | 2013-02-22 |
Data de Publicação | 2013-02-22 |
Classificação | 3.50/5 Total de 2 Avaliações |
Desenvolvedor | https://www.samdutton.com |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | http://www.samdutton.com |
URL da Página de Ajuda | https://github.com/samdutton/imageCheck |
Idiomas Suportados | 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": [] } |