View Image Info (properties)

View Image Info (properties)

Get properties(including dimensions, URL, file size, file type info) of the image your cursor is pointing to via context menu.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_extName__",
  "version": "0.0.6",
  "description": "__MSG_description__",
  "icons": {
    "16": "img/icon-16.png",
    "32": "img/icon-32.png",
    "48": "img/icon-48.png",
    "128": "img/icon-128.png"
  },
  "action": {
    "default_popup": "view/popup.html"
  },
  "content_scripts": [
    {
      "js": [
        "js/gia.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "all_frames": true
    },
    {
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_start",
      "js": [
        "js/content.js"
      ]
    }
  ],
  "permissions": [
    "contextMenus",
    "storage",
    "tabs"
  ],
  "default_locale": "en",
  "background": {
    "service_worker": "js/clk.js"
  },
  "host_permissions": [
    "*://*/*"
  ],
  "manifest_version": 3
}