Add google search option to duckduckgo

Add google search option to duckduckgo

Hate when you can't find what your looking for on duckduckgo? Why not look at google with a simple press of the button!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Add google search option to duckduckgo",
  "version": "1.1",
  "manifest_version": 2,
  "description": "Hate when you can't find what your looking for on duckduckgo? Why not look at google with a simple press of the button!",
  "content_scripts": [
    {
      "js": [
        "jquery.js",
        "content.js"
      ],
      "matches": [
        "https://duckduckgo.com/?q=*",
        "https://www.bing.com/search?q=*"
      ]
    }
  ]
}