Focuser

Focuser

Set the focus on search boxes without using the mouse

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Focuser",
  "short_name": "Focuser",
  "version": "2.0.0.0",
  "description": "Set the focus on search boxes without using the mouse",
  "icons": {
    "32": "search32.png",
    "64": "search.png",
    "128": "search128.png"
  },
  "browser_action": {
    "default_icon": "search128.png",
    "default_popup": "popup.html",
    "default_title": "Focus search boxes"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "index.js"
      ]
    }
  ]
}