Exify
EXIF viewer for the modern Web
Was ist Exify?
Exify ist eine Chrome-Erweiterung, die von thesilentman entwickelt wurde, und ihr Hauptmerkmal ist "EXIF viewer for the modern Web".
Erweiterungsscreenshots
Exify-Erweiterungs-CRX-Datei herunterladen
Laden Sie Exify-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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. Grundlegende Informationen zur Erweiterung
| Name | |
| ID | llhmhhnpmiikplpnkmbgbgmlenleecle |
| Offizielle URL | https://chromewebstore.google.com/detail/exify/llhmhhnpmiikplpnkmbgbgmlenleecle |
| Beschreibung | EXIF viewer for the modern Web |
| Dateigröße | 362 KB |
| Installationsanzahl | 2,510 |
| Aktuelle Version | 2.0.26 |
| Letztes Update | 2023-11-22 |
| Veröffentlichungsdatum | 2020-06-08 |
| Bewertung | 4.08/5 Insgesamt 12 Bewertungen |
| Entwickler | thesilentman |
| [email protected] | |
| Zahlungsart | free |
| Erweiterungswebsite | https://www.exify.io |
| Hilfeseite URL | https://www.exify.io |
| Unterstützte Sprachen | 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
} | |