Search it

Search it

Searchs selected text

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "__MSG_extName__",
  "description": "__MSG_extDescription__",
  "version": "0.1",
  "default_locale": "en",
  "permissions": [
    "contextMenus",
    "tabs",
    "activeTab",
    "storage"
  ],
  "background": {
    "scripts": [
      "logic.js"
    ]
  },
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "commands": {
    "searchIt": {
      "suggested_key": {
        "default": "Ctrl+Q"
      },
      "description": "Search it shortcut"
    }
  },
  "options_ui": {
    "page": "options/options.html",
    "chrome_style": true
  }
}