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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://exifmaster.com และคุณลักษณะหลักของมันคือ "Most apps delete the exif data from Images (because it includes sensitive informations such as when and where you took the photo)"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Exif Viewer

ดาวน์โหลดไฟล์ส่วนขยาย Exif Viewer ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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"
    ]
}