Gootana

Gootana

Redirect bing urls to google for use with cortana.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Gootana",
  "short_name": "Gootana",
  "description": "Redirect bing urls to google for use with cortana.",
  "author": "Sean O'Leary",
  "homepage_url": "https://o-leary.com/downloads/gootana",
  "version": "1.2",
  "manifest_version": 2,
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "permissions": [
    "webRequest",
    "webRequestBlocking",
    "*://www.bing.com/",
    "background"
  ],
  "background": {
    "scripts": [
      "gootana.js"
    ]
  },
  "externally_connectable": {
    "matches": [
      "*://o-leary.com/*"
    ]
  }
}