Exify

EXIF viewer for the modern Web

Что такое Exify?

Exify - это расширение Chrome, разработанное thesilentman, и его основная функция - "EXIF viewer for the modern Web".

Снимки экрана расширения

screenshot
screenshot
screenshot

Скачать файл CRX расширения Exify

Скачайте файлы расширений Exify в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        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.                    

Основная информация о расширении

Название Exify Exify
ID llhmhhnpmiikplpnkmbgbgmlenleecle
Официальный URL https://chromewebstore.google.com/detail/exify/llhmhhnpmiikplpnkmbgbgmlenleecle
Описание EXIF viewer for the modern Web
Размер файла 362 KB
Количество установок 2,510
Текущая Версия 2.0.26
Последнее Обновление 2023-11-22
Дата публикации 2020-06-08
Рейтинг 4.08/5 Всего 12 оценок
Разработчик thesilentman
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://www.exify.io
URL страницы помощи https://www.exify.io
Поддерживаемые языки 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
}