SME - Search Made Easy

SME - Search Made Easy

Hotkey and Context Menu Search. Highlight text and press G to Google(9 more). Add your favourite Search Engines. Change Hotkeys.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "SME - Search Made Easy",
  "description": "Hotkey and Context Menu Search. Highlight text and press G to Google(9 more). Add your favourite Search Engines. Change Hotkeys.",
  "version": "1.2",
  "permissions": [
    "contextMenus",
    "tabs",
    "management"
  ],
  "icons": {
    "16": "sme16.png",
    "48": "sme48.png",
    "128": "sme128.png"
  },
  "browser_action": {
    "default_icon": "sme.png",
    "default_popup": "popup.html"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "all_frames": true,
      "js": [
        "content_script.js"
      ],
      "run_at": "document_end"
    }
  ],
  "options_page": "options.html"
}