Search Site WE

Search Site WE

Search within the current subdomain or within the entire domain, using the toolbar button or context menu.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "Search Site WE",
  "version": "4.7",
  "description": "Search within the current subdomain or within the entire domain.",
  "icons": {
    "16": "icon16.png",
    "32": "icon32.png",
    "48": "icon48.png",
    "64": "icon64.png",
    "128": "icon128-96.png"
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "searchsite-we@DW-dev",
      "strict_min_version": "51.0"
    }
  },
  "permissions": [
    "tabs",
    "webNavigation",
    "contextMenus",
    "notifications",
    "storage"
  ],
  "browser_action": {
    "browser_style": false,
    "default_icon": {
      "16": "icon16.png"
    },
    "default_title": "Search Site WE",
    "default_popup": "popup.html"
  },
  "background": {
    "scripts": [
      "background.js",
      "publicsuffixlist.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "options_ui": {
    "page": "options.html",
    "open_in_tab": true
  },
  "commands": {
    "_execute_browser_action": {
      "description": "Show Search Popup",
      "suggested_key": {
        "default": "Alt+K"
      }
    }
  }
}