Search'in

Search'in

Adds a context menu item to provide the search of the selected text with Google or any other search provider.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "__MSG_extensionName__",
  "version": "2.0.0",
  "author": "bam",
  "default_locale": "en",
  "description": "__MSG_extensionDescription__",
  "icons": {
    "16": "icons/searchin_40px.png",
    "48": "icons/searchin_48px.png",
    "128": "icons/searchin_128px.png",
    "176": "icons/searchin_176px.png"
  },
  "permissions": [
    "contextMenus",
    "storage"
  ],
  "background": {
    "scripts": [
      "src/background.js"
    ],
    "persistent": true
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "src/content_script.js"
      ],
      "all_frames": true,
      "run_at": "document_start"
    }
  ],
  "browser_action": {
    "default_icon": {
      "40": "icons/searchin_40px.png"
    },
    "default_title": "__MSG_browserActionTitle__",
    "default_popup": "src/popup.html"
  },
  "options_page": "src/options.html",
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}