Exify

EXIF viewer for the modern Web

Cos'è Exify?

Exify è un'estensione di Chrome sviluppata da thesilentman, e la sua funzione principale è "EXIF viewer for the modern Web".

Screenshot dell'Estensione

screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione Exify

Scarica i file di estensione Exify in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Exify Exify
ID llhmhhnpmiikplpnkmbgbgmlenleecle
URL Ufficiale https://chromewebstore.google.com/detail/exify/llhmhhnpmiikplpnkmbgbgmlenleecle
Descrizione EXIF viewer for the modern Web
Dimensione del File 362 KB
Conteggio Installazioni 2,510
Versione Corrente 2.0.26
Ultimo Aggiornamento 2023-11-22
Data di Pubblicazione 2020-06-08
Valutazione 4.08/5 Totale 12 Valutazioni
Sviluppatore thesilentman
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://www.exify.io
URL della Pagina di Aiuto https://www.exify.io
Lingue Supportate 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
}