Cool Search

Cool Search

Press Alt+Shift+S to search for the selected text on Bing.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Cool Search",
  "description": "Press Alt+Shift+S to search for the selected text on Bing.",
  "icons": {
    "16": "icon-16.png",
    "48": "icon-48.png",
    "128": "icon-128.png"
  },
  "version": "0.1",
  "manifest_version": 2,
  "permissions": [
    "tabs",
    "http://*/*",
    "https://*/*"
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "commands": {
    "bing-search": {
      "suggested_key": {
        "default": "Alt+Shift+S"
      },
      "description": "Cool search selected text"
    }
  }
}