PHP Search

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

What is PHP Search?

PHP Search is a Chrome extension developed by xeno.be, and its main feature is "Adds support to the omnibox to search the PHP reference docs.".

Extension Screenshots

screenshot

Download PHP Search Extension CRX File

Download PHP Search extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        Use this omnibox plugin to directly search the online PHP help.

Simply type 'php ' to start your search, then the name of whatever class you are looking for help with, to take you straight to the relevant page in the  online documentation.

This extension will try and find the mirror site nearest to you. You can change this site in the extensions options page: either through Chrome's extensions page or by typing 'php options' in the omnibox.

Source from: 

https://github.com/mpress/developer-omniboxes-for-chrome                    

Extension Basic Information

Name PHP Search PHP Search
ID mfpdmlochkjkogiihgjlnlagdigapnfn
Official URL https://chrome.google.com/webstore/detail/php-search/mfpdmlochkjkogiihgjlnlagdigapnfn
Description Adds support to the omnibox to search the PHP reference docs.
File Size 112 KB
Installation Count 286
Current Version 3.0.1
Last Updated 2015-10-09
Publish Date 2015-10-09
Rating 5.00/5 Total 2 Ratings
Developer xeno.be
Payment Type free
Supported Languages en
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": {
        "128": "icons\/icon128.png",
        "32": "icons\/icon32.png",
        "16": "icons\/icon16.png"
    },
    "omnibox": {
        "keyword": "php"
    },
    "permissions": [
        "tabs",
        "http:\/\/www.php.net\/"
    ],
    "version": "3.0.1"
}