DeadMouse

DeadMouse

Ditch your mouse. Surf the web with just your keyboard.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "http://clients2.google.com/service/update2/crx",
  "name": "DeadMouse",
  "version": "1.10",
  "description": "Ditch your mouse. Surf the web with just your keyboard.",
  "icons": {
    "16": "images/icon16.png",
    "48": "images/icon48.png",
    "128": "images/icon128.png"
  },
  "background": {
    "page": "background.html"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "libs/zepto.min.js",
        "build/string_score.js",
        "build/hook.js"
      ],
      "css": [
        "style/main.css"
      ]
    }
  ],
  "options_page": "fancy-settings/source/index.html",
  "manifest_version": 2
}