Duck Duck Google

Duck Duck Google

Sometimes Duck Duck Go isn't perfect, here is a bailout that adds a simple button to duck duck go to google your term.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Duck Duck Google",
  "version": "1.0.1",
  "description": "Sometimes Duck Duck Go isn't perfect, here is a bailout that adds a simple button to duck duck go to google your term.",
  "content_scripts": [
    {
      "matches": [
        "https://*.duckduckgo.com/*"
      ],
      "run_at": "document_start",
      "js": [
        "duckDuckGoogle.js"
      ],
      "css": [
        "duck-duck.styles.css"
      ]
    }
  ],
  "icons": {
    "16": "images/duckduckgoogle_16.png",
    "48": "images/duckduckgoogle_48.png",
    "128": "images/duckduckgoogle_128.png"
  },
  "manifest_version": 2
}