Exif Metadata Viewer
Read meta information of audio, video, image, PDF, and many more files (powered by ExifTool)
¿Qué es Exif Metadata Viewer?
Exif Metadata Viewer es una extensión de Chrome desarrollada por lunu.bounir, y su función principal es "Read meta information of audio, video, image, PDF, and many more files (powered by ExifTool)".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Exif Metadata Viewer
Descarga archivos de extensión Exif Metadata Viewer en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
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/
Información Básica de la Extensión
Nombre | Exif Metadata Viewer |
ID | gkpgpjiklbmajkophlgflgnehplbcppj |
URL Oficial | https://chromewebstore.google.com/detail/exif-metadata-viewer/gkpgpjiklbmajkophlgflgnehplbcppj |
Descripción | Read meta information of audio, video, image, PDF, and many more files (powered by ExifTool) |
Tamaño del Archivo | 7.05 MB |
Cantidad de Instalaciones | 911 |
Versión Actual | 0.1.3 |
Última Actualización | 2023-11-09 |
Fecha de Publicación | 2023-01-23 |
Calificación | 5.00/5 Total de 1 Calificaciones |
Desarrollador | lunu.bounir |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Sitio Web de la Extensión | https://webextension.org/listing/metadata-viewer.html |
URL de la Página de Ayuda | https://webextension.org/listing/metadata-viewer.html |
URL de la Página de Política de Privacidad | https://add0n.com/policies/lunu.bounir.txt |
Idiomas Soportados | 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": [] } } |