Keyboard Navigation

Keyboard Navigation

Keyboard based link navigation like Conkeror

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Keyboard Navigation",
  "short_name": "keyboardnav",
  "description": "Keyboard based link navigation like Conkeror",
  "homepage_url": "https://github.com/dermatthias/keyboardnav",
  "version": "1.0",
  "icons": {
    "128": "icon.png"
  },
  "browser_action": {
    "default_icon": "icon.png",
    "default_popup": "popup.html"
  },
  "permissions": [
    "activeTab"
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "css": [
        "style.css"
      ],
      "js": [
        "jquery-3.1.0.min.js",
        "contentscript.js"
      ]
    }
  ],
  "commands": {
    "highlight-links": {
      "suggested_key": {
        "default": "Ctrl+Space"
      },
      "description": "Highlight links on a webpage"
    }
  }
}