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 |
公式URL | 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 |
Eメール | [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": [] } |