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 مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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 |
عنوان صفحة المساعدة | 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": [] } |