Link to Element

Link to Element

Easily send and receive direct links to any section within an HTML page.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Link to Element",
  "description": "Easily send and receive direct links to any section within an HTML page.",
  "version": "0.2",
  "permissions": [
    "contextMenus"
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "icons": {
    "128": "link-to-element.png"
  },
  "content_scripts": [
    {
      "js": [
        "lib/jquery.min.js",
        "lib/jquery.scrollto.min.js",
        "lib/jquery.xpath.js",
        "link-to-element.helpers.js",
        "link-to-element.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ]
    }
  ],
  "manifest_version": 2
}