Search Quick

Search Quick

Google SearchQuick automatically opens the search results of a Google Search in new tabs

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "http://clients2.google.com/service/update2/crx",
  "name": "Search Quick",
  "version": "0.3",
  "description": "Google SearchQuick automatically opens the search results of a Google Search in new tabs",
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "icons": {
    "16": "Google.png",
    "48": "Google.png",
    "128": "Google.png"
  },
  "browser_action": {
    "default_icon": "Google.png"
  },
  "manifest_version": 2,
  "options_page": "options.html",
  "content_scripts": [
    {
      "matches": [
        "http://*/*"
      ],
      "js": [
        "jquery-1.6.1.min.js",
        "urlcatch.js"
      ],
      "run_at": "document_idle",
      "all_frames": false
    }
  ]
}