Exify

EXIF viewer for the modern Web

O que é Exify?

Exify é uma extensão do Chrome desenvolvida por thesilentman, e sua principal característica é "EXIF viewer for the modern Web".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Exify

Baixe arquivos de extensão Exify no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome Exify Exify
ID llhmhhnpmiikplpnkmbgbgmlenleecle
URL Oficial https://chromewebstore.google.com/detail/exify/llhmhhnpmiikplpnkmbgbgmlenleecle
Descrição EXIF viewer for the modern Web
Tamanho do Arquivo 362 KB
Contagem de Instalações 2,510
Versão Atual 2.0.26
Última Atualização 2023-11-22
Data de Publicação 2020-06-08
Classificação 4.08/5 Total de 12 Avaliações
Desenvolvedor thesilentman
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://www.exify.io
URL da Página de Ajuda https://www.exify.io
Idiomas Suportados 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
}