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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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 |
도움말 페이지 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": [] } |