EXIF QuickView

Shows EXIF information on the image when the mouse is over!

EXIF QuickView란 무엇입니까?

EXIF QuickView은(는) smartendude에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Shows EXIF information on the image when the mouse is over!"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

EXIF QuickView 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        This will extension will run when your mouse is over the image. Small overlay information will be shown on photo that contains EXIF data. This Extension also provide options to customize how it looks.

*Please note that some website strips out EXIF data so this extension will not work in that case
**This extension might not work on some website that has special way to display image

Release Note:
2.1.1
- Remove leftover debug code

2.1.0
- Add option to display taken mode
- Make the overlay on very top of other elements

2.0.6
- Sanitize input in exclude url option

2.0.5
- Fix color of GPS link is hard to see

2.0.3
- Fix min width and height not working

2.0.2
- Make compact mode a little bit more compact

2.0.1
- Fix the icon in extension manager not show
- Add contact detail to option page

2.0
- Update map API for new version of Google Maps API
- Add "Display at top of image" option
- Remove external and CDN dependencies
- Remove jQuery and use pure javascript for better performance
- Add analytics back only for setting section only for improvement purpose

1.9
- Due to any privacy concerns, no data will be collected from this extension

1.8
- Fix overlay element overrides image functionalities

1.7
- add compact mode option
- option for no overlay when no EXIF data

1.6.1
- Fix overlay is not hidden after mouse left

1.6
- Add flash mode and exposure program data

1.5.3
- Fix bug for some site that overwrite h1 style

1.5.2
- Refine Make and Model data

1.5.1
- Track few camera information for developing purpose

1.5
- Add analytic to option page
- fix bug that the overlay element is not removed when scroll to new image

1.4
- Add option page
- Add ability to exclude site
- Change text when mouseover on extension

1.3
- Add ability to turn on/off by clicking extension in toolbar

1.1
- Change to absolute position to avoid style confilct

1.0
- Initial Release                    

확장 프로그램 기본 정보

이름 EXIF QuickView EXIF QuickView
ID kjihpkahhpobojbdnknpelpgmcihnepj
공식 URL https://chromewebstore.google.com/detail/exif-quickview/kjihpkahhpobojbdnknpelpgmcihnepj
설명 Shows EXIF information on the image when the mouse is over!
파일 크기 229 KB
설치 횟수 14,647
현재 버전 2.1.1
최근 업데이트 2019-04-08
출시 날짜 2019-04-07
평점 3.30/5 총 50 개의 평점
개발자 smartendude
이메일 [email protected]
결제 유형 free
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "EXIF QuickView",
    "version": "2.1.1",
    "description": "Shows EXIF information on the image when the mouse is over!",
    "short_name": "EXIF QuickView",
    "manifest_version": 2,
    "permissions": [
        "activeTab",
        "declarativeContent",
        "storage"
    ],
    "icons": {
        "16": "images\/icon-16.png",
        "48": "images\/icon-48.png",
        "128": "images\/icon-128.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "external\/exif.js",
                "content.js"
            ],
            "css": [
                "content.css"
            ],
            "run_at": "document_end"
        }
    ],
    "content_security_policy": "script-src 'self' https:\/\/www.google-analytics.com; object-src 'self'",
    "web_accessible_resources": [
        "fonts\/*.*",
        "images\/*.*"
    ],
    "options_page": "options.html",
    "browser_action": {
        "default_icon": {
            "16": "images\/icon-16.png",
            "48": "images\/icon-48.png",
            "128": "images\/icon-128.png"
        }
    }
}