Exif Metadata Viewer

Read meta information of audio, video, image, PDF, and many more files (powered by ExifTool)

什么是Exif Metadata Viewer?

Exif Metadata Viewer是由lunu.bounir开发的Chrome扩展程序,该扩展的主要功能是“Read meta information of audio, video, image, PDF, and many more files (powered by ExifTool)”。

扩展截图

screenshot

下载Exif Metadata Viewer扩展crx文件

下载Exif Metadata Viewer扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        The "Metadata Viewer" extension allows you to read metadata headers in image, audio, video, and PDF files. It utilizes the ExifTool library by Phil Harvey to read metadata information in the file header of a wide range of file formats. The extension runs on an isolated window. It can read many metadata including EXIF, and ID3.

Features:
Recognizes thousands of different tags
Reads maker notes on many digital cameras
Reads timed metadata (e.g. GPS track) from videos
Reads structured XMP information.

For a complete list of supported formats visit:
https://exiftool.org/#supported

Source Code:
https://github.com/lunu-bounir/metadata-editor/                    

扩展基本信息

名称 Exif Metadata Viewer Exif Metadata Viewer
ID gkpgpjiklbmajkophlgflgnehplbcppj
官方URL https://chromewebstore.google.com/detail/exif-metadata-viewer/gkpgpjiklbmajkophlgflgnehplbcppj
简介 Read meta information of audio, video, image, PDF, and many more files (powered by ExifTool)
文件大小 7.05 MB
安装次数 911
当前版本 0.1.3
更新时间 2023-11-09
上架时间 2023-01-23
评分 5.00/5 共1次评分
开发者 lunu.bounir
电子邮箱 [email protected]
付费类型 free
扩展官网 https://webextension.org/listing/metadata-viewer.html
帮助页面URL https://webextension.org/listing/metadata-viewer.html
隐私政策页面URL https://add0n.com/policies/lunu.bounir.txt
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Exif Metadata Viewer",
    "description": "Read meta information of audio, video, image, PDF, and many more files (powered by ExifTool)",
    "version": "0.1.3",
    "manifest_version": 3,
    "permissions": [
        "storage"
    ],
    "homepage_url": "https:\/\/webextension.org\/listing\/metadata-viewer.html",
    "background": {
        "service_worker": "worker.js"
    },
    "action": {
        "default_title": "Open the Metadata Editor"
    },
    "icons": {
        "16": "data\/icons\/16.png",
        "32": "data\/icons\/32.png",
        "48": "data\/icons\/48.png",
        "64": "data\/icons\/64.png",
        "128": "data\/icons\/128.png",
        "256": "data\/icons\/256.png",
        "512": "data\/icons\/512.png"
    },
    "content_security_policy": {
        "extension_pages": "script-src 'self' 'wasm-unsafe-eval'; object-src 'self'"
    },
    "commands": {
        "_execute_action": []
    }
}