Image Data

Image Data

Show image resolution, file type, and file size on mouse over

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "Image Data",
  "version": "2.6.1",
  "description": "Show image resolution, file type, and file size on mouse over",
  "browser_specific_settings": {
    "gecko": {
      "id": "{b8ecb56e-f778-4df4-962a-52974b36abdd}",
      "strict_min_version": "48.0"
    }
  },
  "browser_action": {
    "default_icon": {
      "48": "icons/thumb-48.png"
    }
  },
  "icons": {
    "48": "icons/thumb-48.png"
  },
  "commands": {
    "_execute_browser_action": {
      "suggested_key": {
        "default": "Shift+Alt+X"
      },
      "description": "Toggle extension"
    }
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "defaults.js",
        "imgdata.js"
      ],
      "run_at": "document_end"
    }
  ],
  "options_ui": {
    "page": "options.html"
  },
  "permissions": [
    "<all_urls>",
    "storage"
  ]
}