Exify

EXIF viewer for the modern Web

Qu'est-ce que Exify ?

Exify est une extension Chrome développée par thesilentman, et sa fonction principale est "EXIF viewer for the modern Web".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension Exify

Téléchargez les fichiers d'extension Exify au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Exify Exify
ID llhmhhnpmiikplpnkmbgbgmlenleecle
URL Officiel https://chromewebstore.google.com/detail/exify/llhmhhnpmiikplpnkmbgbgmlenleecle
Description EXIF viewer for the modern Web
Taille du Fichier 362 KB
Nombre d'Installations 2,510
Version Actuelle 2.0.26
Dernière Mise à Jour 2023-11-22
Date de Publication 2020-06-08
Évaluation 4.08/5 Total 12 Évaluations
Développeur thesilentman
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://www.exify.io
URL de la Page d'Aide https://www.exify.io
Langues Prises en Charge 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
}