Easy Search

Easy Search

Press Ctrl+Shift+S (Command+Shift+S on a Mac) to search for the selected text on Google.

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Easy Search",
  "description": "Press Ctrl+Shift+S (Command+Shift+S on a Mac) to search for the selected text on Google.",
  "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": {
    "google-search": {
      "suggested_key": {
        "default": "Ctrl+Shift+S"
      },
      "description": "Google search selected text"
    }
  }
}