Hitkey

Hitkey

Hit a key and Search.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "http://clients2.google.com/service/update2/crx",
  "name": "Hitkey",
  "manifest_version": 2,
  "version": "2.0.1",
  "description": "Hit a key and Search.",
  "icons": {
    "16": "icon_16.png",
    "48": "icon_48.png",
    "128": "icon_128.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": true
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content_script.js"
      ],
      "run_at": "document_idle",
      "all_frames": true
    }
  ],
  "homepage_url": "http://goo.gl/KoliQ",
  "options_page": "options.html",
  "permissions": [
    "<all_urls>",
    "storage"
  ]
}