Mouse Trap - Keyboard Navigation

Mouse Trap - Keyboard Navigation

A hit-a-hint style keyboard navigation extension so that you can finally get rid of that rodent sitting on your desk.

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Mouse Trap - Keyboard Navigation",
  "version": "1.0",
  "description": "A hit-a-hint style keyboard navigation extension so that you can finally get rid of that rodent sitting on your desk.",
  "permissions": [
    "activeTab",
    "storage"
  ],
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "content.js"
      ],
      "run_at": "document_end",
      "css": [
        "content.css"
      ]
    }
  ],
  "options_ui": {
    "page": "options.html"
  },
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "commands": {
    "open_keynav": {
      "suggested_key": {
        "default": "Ctrl+Shift+F"
      },
      "description": "Toggle Keyboard Navigation"
    }
  }
}