Exify
EXIF viewer for the modern Web
Exify란 무엇입니까?
Exify은(는) thesilentman에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "EXIF viewer for the modern Web"입니다.
확장 프로그램 스크린샷
Exify 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Show EXIF info by hovering the mouse over a photo. Main features: - Default info: Equipment (Camera + Lens), Focal Length, Aperture, Exposure, ISO - Optional info: Date Taken, Location (via Google Maps), Metering Mode, Exposure Mode, Exposure Bias, Software - Histogram (via the settings dialog) Settings: - Use compact overlay size - Toggle the overlay on or off for the current site - Control whether the overlay should be on or off by default This add-on is clean of any tracking or ads.
확장 프로그램 기본 정보
이름 | Exify |
ID | llhmhhnpmiikplpnkmbgbgmlenleecle |
공식 URL | https://chromewebstore.google.com/detail/exify/llhmhhnpmiikplpnkmbgbgmlenleecle |
설명 | EXIF viewer for the modern Web |
파일 크기 | 362 KB |
설치 횟수 | 2,510 |
현재 버전 | 2.0.26 |
최근 업데이트 | 2023-11-22 |
출시 날짜 | 2020-06-08 |
평점 | 4.08/5 총 12 개의 평점 |
개발자 | thesilentman |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://www.exify.io |
도움말 페이지 URL | https://www.exify.io |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Exify", "version": "2.0.26", "description": "EXIF viewer for the modern Web", "homepage_url": "https:\/\/www.exify.info\/", "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "background": { "scripts": [ "background.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "content.js" ], "css": [ "content.css" ] } ], "browser_action": { "default_popup": "popup.html", "default_icon": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" } }, "web_accessible_resources": [ "icons\/*" ], "permissions": [ "*:\/\/*\/*", "storage", "activeTab" ], "content_security_policy": "script-src 'self'; object-src 'self'", "manifest_version": 2 } |