Navigation Shortcuts

Navigation Shortcuts

Allows next, up, prev, and top links to be used with simple keyboard shortcuts.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Navigation Shortcuts",
  "version": "2017.8.30",
  "manifest_version": 2,
  "description": "Allows next, up, prev, and top links to be used with simple keyboard shortcuts.",
  "permissions": [
    "history"
  ],
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "content_script.js"
      ],
      "run_at": "document_end",
      "all_frames": false
    }
  ],
  "browser_action": {
    "default_popup": "popup.html"
  }
}