Image Checker
Check for incorrectly resized and single-pixel images
Image Checker là gì?
Image Checker là một tiện ích mở rộng Chrome được phát triển bởi https://www.samdutton.com, và tính năng chính của nó là "Check for incorrectly resized and single-pixel images".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Image Checker
Tải xuống các tệp mở rộng Image Checker dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Image Checker |
ID | bacnicogfgpigmmenfiplfiofpkocpii |
URL Chính Thức | https://chromewebstore.google.com/detail/image-checker/bacnicogfgpigmmenfiplfiofpkocpii |
Mô tả | Check for incorrectly resized and single-pixel images |
Kích Thước Tệp | 19.32 KB |
Số Lần Cài Đặt | 437 |
Phiên Bản Hiện Tại | 1.3 |
Cập Nhật Lần Cuối | 2013-02-22 |
Ngày Phát Hành | 2013-02-22 |
Đánh Giá | 3.50/5 Tổng số 2 Đánh Giá |
Nhà Phát Triển | https://www.samdutton.com |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | http://www.samdutton.com |
URL Trang Trợ Giúp | https://github.com/samdutton/imageCheck |
Ngôn Ngữ Được Hỗ Trợ | 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": [] } |