Pagemark

Pagemark

Add a context menu item to copy a URL at the spot on the page you want to your clipboard.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "http://clients2.google.com/service/update2/crx",
  "background": {
    "page": "background.html"
  },
  "description": "Add a context menu item to copy a URL at the spot on the page you want to your clipboard.",
  "icons": {
    "16": "icon16.png",
    "32": "icon32.png",
    "48": "icon48.png",
    "96": "icon96.png",
    "128": "icon128.png"
  },
  "name": "Pagemark",
  "permissions": [
    "clipboardWrite",
    "clipboardRead",
    "contextMenus"
  ],
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "jquery.js",
        "pagemark.content.js"
      ]
    }
  ],
  "version": "1.0.3",
  "manifest_version": 2
}