Get Image Path

Get Image Path

Get full Image path on right Click

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Get Image Path",
  "description": "Get full Image path on right Click",
  "version": "0.2",
  "icons": {
    "16": "Images/logo16.png",
    "48": "Images/logo48.png",
    "128": "Images/logo128.png"
  },
  "permissions": [
    "activeTab",
    "tabs",
    "clipboardRead",
    "contextMenus",
    "http://*/*",
    "https://*/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "jquery.js",
        "popup.js"
      ]
    }
  ],
  "browser_action": {
    "default_icon": "Images/logo48.png"
  },
  "background": {
    "page": "popup.html",
    "persistent": true
  }
}