Exify

Exify

EXIF viewer for the modern Web.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "Exify",
  "version": "2.0.27",
  "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,
  "browser_specific_settings": {
    "gecko": {
      "id": "[email protected]"
    }
  }
}