Exif Viewer

Most apps delete the exif data from Images (because it includes sensitive informations such as when and where you took the photo)

Exif Viewer란 무엇입니까?

Exif Viewer은(는) https://exifmaster.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Most apps delete the exif data from Images (because it includes sensitive informations such as when and where you took the photo)"입니다.

확장 프로그램 스크린샷

screenshot

Exif Viewer 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Exif Viewer is an chrome extensions that lets you take a deeper look at your favorite images!

What is EXIF data?
EXIF is short for Exchangeable Image File, a format that is a standard for storing interchange information in digital photography image files using JPEG compression. Almost all new digital cameras use the EXIF annotation, storing information on the image such as shutter speed, exposure compensation, F number, what metering system was used, if a flash was used, ISO number, date and time the image was taken, whitebalance, auxiliary lenses that were used and resolution. Some images may even store GPS information so you can easily see where the images were taken!

EXIF data viewer
Uncover hidden metadata from your photos. Find when and where the picture was taken.

How to view EXIF metadata from your photos?

1Upload a photo
Upload any photo to Jimpl EXIF Viewer. We'll read its metadata and show what's inside.

2View the metadata
View EXIF metadata recorded in the photo. Date, time, camera settings, geolocation coordinates, and many more.                    

확장 프로그램 기본 정보

이름 Exif Viewer Exif Viewer
ID jpdmblbgoanoffndiepfjfhgbbohbnpd
공식 URL https://chromewebstore.google.com/detail/exif-viewer/jpdmblbgoanoffndiepfjfhgbbohbnpd
설명 Most apps delete the exif data from Images (because it includes sensitive informations such as when and where you took the photo)
파일 크기 92.23 KB
설치 횟수 46
현재 버전 1.0.0
최근 업데이트 2023-06-05
출시 날짜 2022-09-02
개발자 https://exifmaster.com
이메일 [email protected]
결제 유형 in_app
확장 프로그램 웹 사이트 https://www.exifmaster.com/
도움말 페이지 URL https://www.exifmaster.com/
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Exif Viewer",
    "version": "1.0.0",
    "description": "Most apps delete the exif data from Images (because it includes sensitive informations such as when and where you took the photo)",
    "author": "South Star",
    "icons": {
        "16": "img\/icon.png",
        "48": "img\/icon.png",
        "128": "img\/icon.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "ExtPay.js"
            ],
            "run_at": "document_start"
        }
    ],
    "action": {
        "default_popup": "popup.html"
    },
    "permissions": [
        "storage"
    ]
}