Image Checker
Check for incorrectly resized and single-pixel images
什麼是Image Checker?
Image Checker是由https://www.samdutton.com開發的Chrome擴展程式,該擴展的主要功能是“Check for incorrectly resized and single-pixel images”。
擴展截圖
下載Image Checker擴展crx文件
下載Image Checker擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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.
擴展基本資訊
名稱 | Image Checker |
ID | bacnicogfgpigmmenfiplfiofpkocpii |
官方網址 | https://chromewebstore.google.com/detail/image-checker/bacnicogfgpigmmenfiplfiofpkocpii |
簡介 | Check for incorrectly resized and single-pixel images |
檔案大小 | 19.32 KB |
安裝次數 | 437 |
目前版本 | 1.3 |
更新時間 | 2013-02-22 |
上架時間 | 2013-02-22 |
評分 | 3.50/5 共 2 次評分 |
開發者 | https://www.samdutton.com |
電子郵箱 | [email protected] |
付費類型 | free |
擴展官網 | http://www.samdutton.com |
說明頁面URL | https://github.com/samdutton/imageCheck |
支援的語言 | 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": [] } |