PHP Function Lookup

Serch PHP Manual on the go!

O que é PHP Function Lookup?

PHP Function Lookup é uma extensão do Chrome desenvolvida por Yuta Fujisawa, e sua principal característica é "Serch PHP Manual on the go!".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão PHP Function Lookup

Baixe arquivos de extensão PHP Function Lookup no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        The extension allows you to look up a PHP function in the PHP Manual by right-clicking on highlighted text or typing a keyword in the popup window. Default language is set to English, but you can also change it to Japanese if you like.

調べたいPHP関数名を選択して右クリック、または検索窓に入力することでPHP Manualを気軽に検索できます。初期設定では英語のマニュアルを検索しますが、設定を変更することで日本語のマニュアルの検索が可能になります。


===Version 0.9.2===

・Autocomplete functionality has been added in addition to the suggest list.
・サジェスト機能に加えてアートコンプリート機能を追加                    

Informações Básicas da Extensão

Nome PHP Function Lookup PHP Function Lookup
ID onmlcibaplodkbicdokaalapnaknkmkk
URL Oficial https://chrome.google.com/webstore/detail/php-function-lookup/onmlcibaplodkbicdokaalapnaknkmkk
Descrição Serch PHP Manual on the go!
Tamanho do Arquivo 745 KB
Contagem de Instalações 120
Versão Atual 0.9.2
Última Atualização 2017-09-30
Data de Publicação 2017-09-30
Classificação 5.00/5 Total de 2 Avaliações
Desenvolvedor Yuta Fujisawa
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "PHP Function Lookup",
    "version": "0.9.2",
    "description": "Serch PHP Manual on the go!",
    "background": {
        "scripts": [
            "eventPage.js"
        ],
        "perssistent": false
    },
    "permissions": [
        "tabs",
        "contextMenus",
        "storage",
        "notifications"
    ],
    "browser_action": {
        "default_popup": "popup.html"
    },
    "icons": {
        "128": "icon.png",
        "48": "icon.png",
        "16": "icon.png"
    },
    "options_page": "options.html"
}