Exify
EXIF viewer for the modern Web
Wat is Exify?
Exify is een Chrome-extensie ontwikkeld door thesilentman, en de belangrijkste functie is "EXIF viewer for the modern Web".
Extensie Screenshots
Download het CRX-bestand van de extensie Exify
Download Exify-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
Show EXIF info by hovering the mouse over a photo. Main features: - Default info: Equipment (Camera + Lens), Focal Length, Aperture, Exposure, ISO - Optional info: Date Taken, Location (via Google Maps), Metering Mode, Exposure Mode, Exposure Bias, Software - Histogram (via the settings dialog) Settings: - Use compact overlay size - Toggle the overlay on or off for the current site - Control whether the overlay should be on or off by default This add-on is clean of any tracking or ads.
Basisinformatie over de Extensie
Naam | Exify |
ID | llhmhhnpmiikplpnkmbgbgmlenleecle |
Officiële URL | https://chromewebstore.google.com/detail/exify/llhmhhnpmiikplpnkmbgbgmlenleecle |
Beschrijving | EXIF viewer for the modern Web |
Bestandsgrootte | 362 KB |
Aantal Installaties | 2,510 |
Huidige Versie | 2.0.26 |
Laatst Bijgewerkt | 2023-11-22 |
Publicatiedatum | 2020-06-08 |
Beoordeling | 4.08/5 Totaal 12 Beoordelingen |
Ontwikkelaar | thesilentman |
[email protected] | |
Betalingswijze | free |
Extensiewebsite | https://www.exify.io |
Help Pagina-URL | https://www.exify.io |
Ondersteunde Talen | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Exify", "version": "2.0.26", "description": "EXIF viewer for the modern Web", "homepage_url": "https:\/\/www.exify.info\/", "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "background": { "scripts": [ "background.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "content.js" ], "css": [ "content.css" ] } ], "browser_action": { "default_popup": "popup.html", "default_icon": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" } }, "web_accessible_resources": [ "icons\/*" ], "permissions": [ "*:\/\/*\/*", "storage", "activeTab" ], "content_security_policy": "script-src 'self'; object-src 'self'", "manifest_version": 2 } |