Exify

EXIF viewer for the modern Web

Exify क्या है?

Exify thesilentman द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "EXIF viewer for the modern Web"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Exify एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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
}