DuckDuckGo: Search on Google

DuckDuckGo: Search on Google

Adds a link for searching the same query on other search engines.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "DuckDuckGo: Search on Google",
  "version": "0.0.1",
  "manifest_version": 2,
  "description": "Adds a link for searching the same query on other search engines.",
  "icons": {
    "16": "icons/icon16.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "permissions": [
    "storage",
    "*://duckduckgo.com/*"
  ],
  "options_page": "options.html",
  "content_scripts": [
    {
      "js": [
        "inject.js"
      ],
      "css": [
        "inject.css"
      ],
      "matches": [
        "*://duckduckgo.com/*"
      ]
    }
  ]
}