Keyboard-fu

Keyboard-fu

An extremely customizable keyboard shortcuts interface that aims to rid you of the rodent :)

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "http://clients2.google.com/service/update2/crx",
  "name": "Keyboard-fu",
  "version": "0.7.1",
  "description": "An extremely customizable keyboard shortcuts interface that aims to rid you of the rodent :)",
  "icons": {
    "16": "res/logo-16.png",
    "48": "res/logo-48.png",
    "128": "res/logo-128.png"
  },
  "permissions": [
    "http://*/*",
    "https://*/*",
    "tabs",
    "bookmarks"
  ],
  "background": {
    "scripts": [
      "vendor/jquery.js",
      "js/background.js"
    ]
  },
  "options_page": "options.html",
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "vendor/jquery.js",
        "js/lib.js",
        "js/api.js",
        "js/content-script.js"
      ],
      "css": [
        "css/content-page.css"
      ]
    }
  ],
  "manifest_version": 2
}