Show and Copy Image Properties

Show and Copy Image Properties

You can see the properties of the image and copy them to the clipboard easily.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "__MSG_appName__",
  "description": "__MSG_appDesc__",
  "default_locale": "en",
  "version": "1.4",
  "manifest_version": 2,
  "icons": {
    "16": "assets/icons/16.png",
    "128": "assets/icons/128.png"
  },
  "background": {
    "scripts": [
      "assets/js/background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "https://*/*"
      ],
      "run_at": "document_start",
      "js": [
        "assets/js/popperjs.js",
        "assets/js/tippy.js",
        "assets/js/inject.js"
      ],
      "css": [
        "assets/css/app.css"
      ]
    }
  ],
  "browser_action": {
    "default_icon": "assets/icons/128.png"
  },
  "permissions": [
    "storage",
    "activeTab"
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "{01aa347a-bb27-41f8-9d9f-0bbfa0c4690c}"
    }
  }
}