PHP Search

PHP Search

Adds support to the omnibox to search the PHP reference docs.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "http://clients2.google.com/service/update2/crx",
  "name": "PHP Search",
  "manifest_version": 2,
  "description": "Adds support to the omnibox to search the PHP reference docs.",
  "background": {
    "scripts": [
      "String.js",
      "index.js",
      "getMirror.js",
      "background.js"
    ]
  },
  "options_page": "options.html",
  "icons": {
    "16": "icons/icon16.png",
    "32": "icons/icon32.png",
    "128": "icons/icon128.png"
  },
  "omnibox": {
    "keyword": "php"
  },
  "permissions": [
    "tabs",
    "http://www.php.net/"
  ],
  "version": "3.0.1"
}