Handy Search

Handy Search

Advanced browsing on the internet.

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__",
  "author": "__MSG_extAuthor__",
  "version": "1.2.0",
  "default_locale": "en",
  "background": {
    "page": "background.html"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*",
        "ftp://*/*"
      ],
      "run_at": "document_start",
      "js": [
        "content.js"
      ],
      "css": [
        "content.css"
      ]
    }
  ],
  "icons": {
    "16": "/icons/logo16.png",
    "48": "/icons/logo48.png",
    "128": "/icons/logo128.png"
  },
  "web_accessible_resources": [
    "assets/*"
  ],
  "commands": {
    "toggle-notification": {
      "suggested_key": {
        "default": "Ctrl+M"
      },
      "description": "Minimize/restore notification"
    },
    "accept-notification": {
      "suggested_key": {
        "default": "Ctrl+Shift+F"
      },
      "description": "Found"
    },
    "next-notification": {
      "suggested_key": {
        "default": "Ctrl+Shift+K"
      },
      "description": "Go to next Suggested page"
    }
  },
  "permissions": [
    "tabs",
    "webRequest",
    "webNavigation",
    "*://*/*",
    "ftp://*/*"
  ]
}