Examine source code of jump-to-anchor

Inspect and view changes in jump-to-anchor source codes across current and past versions
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "manifest_version": 2,
  "name": "__MSG_extensionName__",
  "short_name": "__MSG_extensionShortName__",
  "description": "__MSG_extensionDescription__",
  "author": "Brett Zamir",
  "version": "0.10.0",
  "homepage_url": "https://github.com/brettz9/jump-to-anchor/",
  "permissions": [
    "contextMenus",
    "storage"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "polyfills/browser-polyfill.min.js",
        "lib/content.js"
      ],
      "run_at": "document_start",
      "all_frames": true
    }
  ],
  "background": {
    "scripts": [
      "polyfills/browser-polyfill.min.js",
      "lib/background.js"
    ]
  },
  "options_ui": {
    "page": "options/options.html",
    "browser_style": true,
    "chrome_style": true,
    "open_in_tab": false
  },
  "icons": {
    "128": "icon.png"
  },
  "default_locale": "en",
  "applications": {
    "gecko": {
      "id": "jid1-Dk60hv2FYTKPOw@jetpack"
    }
  }
}