Image Checker
Check for incorrectly resized and single-pixel images
Image Checkerคืออะไร?
Image Checker เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://www.samdutton.com และคุณลักษณะหลักของมันคือ "Check for incorrectly resized and single-pixel images"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Image Checker
ดาวน์โหลดไฟล์ส่วนขยาย 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 |
อีเมล | [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": [] } |