Tab Focus through Google Search Results

Tab Focus through Google Search Results

Use the tab key to navigate through Google search results

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Tab Focus through Google Search Results",
  "version": "0.2.1",
  "description": "Use the tab key to navigate through Google search results",
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "include_globs": [
        "http://www.google.*/search*",
        "https://www.google.*/search*"
      ],
      "js": [
        "dom-modifier.js"
      ],
      "css": [
        "style.css"
      ],
      "run_at": "document_end"
    }
  ],
  "icons": {
    "48": "icon.png",
    "96": "[email protected]"
  }
}