Search the current site

Search the current site

A toolbar button to search all pages of any website using Google.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_extName__",
  "version": "9.4",
  "description": "__MSG_extDescription__",
  "options_page": "options.html",
  "options_ui": {
    "page": "options.html",
    "chrome_style": false,
    "open_in_tab": false
  },
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "background": {
    "scripts": [
      "punycodeconverter.js",
      "functions.js",
      "options_storage.js",
      "background.js"
    ]
  },
  "default_locale": "en",
  "permissions": [
    "activeTab",
    "contextMenus",
    "storage"
  ],
  "optional_permissions": [
    "tabs"
  ],
  "browser_action": {
    "default_title": "__MSG_Search_this_site__",
    "default_icon": "icon128.png"
  },
  "manifest_version": 2,
  "minimum_chrome_version": "35"
}