Deep Link

Deep Link

Context menu item for linking to a particular element on a page.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Deep Link",
  "author": "Jacob Bandes-Storch",
  "version": "0.1",
  "description": "Context menu item for linking to a particular element on a page.",
  "permissions": [
    "contextMenus"
  ],
  "background": {
    "persistent": false,
    "scripts": [
      "eventPage.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "contentScript.js"
      ]
    }
  ]
}