Chrometana - Redirect Bing Somewhere Better

Chrometana - Redirect Bing Somewhere Better

Redirect all Bing (and therefore Cortana) searches to a search engine of your choice!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Chrometana - Redirect Bing Somewhere Better",
  "short_name": "Chrometana",
  "description": "Redirect all Bing (and therefore Cortana) searches to a search engine of your choice!",
  "version": "2.0.1",
  "options_page": "html/options.html",
  "permissions": [
    "*://*.bing.com/",
    "webRequest",
    "webRequestBlocking",
    "storage",
    "background"
  ],
  "background": {
    "scripts": [
      "js/bootstrap.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.bing.com/search*"
      ],
      "js": [
        "js/redirect.js"
      ]
    }
  ],
  "icons": {
    "32": "images/logo-32.png",
    "64": "images/logo-64.png",
    "128": "images/logo-128.png"
  },
  "page_action": {
    "default_title": "Chrometana"
  }
}