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)”。
扩展截图
下载Exif Viewer扩展crx文件
下载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 |
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" ] } |