Context Menu Search

Context Menu Search

Search for selected text using the context menu

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Context Menu Search",
  "description": "Search for selected text using the context menu",
  "version": "1.6.11",
  "icons": {
    "16": "img/icons/search-zoom/16x16.png",
    "48": "img/icons/search-zoom/48x48.png",
    "128": "img/icons/search-zoom/128x128.png"
  },
  "permissions": [
    "contextMenus",
    "downloads",
    "storage"
  ],
  "background": {
    "persistent": false,
    "scripts": [
      "js/common.js",
      "js/event-page.js"
    ]
  },
  "options_ui": {
    "chrome_style": true,
    "page": "html/options.html"
  }
}