Copy Image URL

Copy Image URL

When pressing the copy shortcut key on the image, directly copy the image address, no need to right click

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Copy Image URL",
  "version": "1.0",
  "description": "When pressing the copy shortcut key on the image, directly copy the image address, no need to right click",
  "permissions": [
    "clipboardWrite"
  ],
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "content.js"
      ]
    }
  ]
}