Context Menu Search

Context Menu Search

This extension can be used to search for selected text using the context menu. The search results are shown in a new tab next to the current tab.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "Search",
  "version": "1.1resigned1",
  "description": "Search App",
  "icons": {
    "48": "search.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "permissions": [
    "contextMenus",
    "tabs"
  ],
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "searchscript.js"
      ]
    }
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "{dc58186b-ca4a-49f8-9191-13597fdd71a0}"
    }
  }
}