PHPView

Validate and view PHP print_r outputs

PHPViewとは何ですか?

PHPViewはUnknownによって開発されたChromeの拡張機能で、その主な機能は「Validate and view PHP print_r outputs」です。

拡張機能のスクリーンショット

screenshot

PHPView拡張機能のCRXファイルをダウンロード

PHPView拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        Pretty print any kind of PHP print_r output. Debug your arrays and objects easily, and collapse the branches that you don't need to check in order to navigate in a easier way over the structure.

I'm basically adapting this great extension for JSON: https://chrome.google.com/webstore/detail/jsonview/chklaanhfefbnpoihckbnefhakgolnmc

That fantastic work deserves 99% of the credit, but we, PHP developers, also needed this!

Repository: https://github.com/theypsilon/PHPView-for-Chrome
Please, contribute!                    

拡張機能の基本情報

名前 PHPView PHPView
ID nlkobfbkblfhlcobdomlhmpbbhmcbkfd
公式URL https://chromewebstore.google.com/detail/phpview/nlkobfbkblfhlcobdomlhmpbbhmcbkfd
説明 Validate and view PHP print_r outputs
ファイルサイズ 85.75 KB
インストール数 20,000
現在のバージョン 0.1.5
最終更新日 2014-07-08
公開日 2014-07-07
評価 4.28/5 合計 39 レビュー
開発者 Unknown
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://github.com/theypsilon/PHPView-for-Chrome
対応言語 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "PHPView",
    "icons": {
        "16": "jsonview16.png",
        "48": "jsonview48.png",
        "128": "jsonview128.png"
    },
    "version": "0.1.5",
    "description": "Validate and view PHP print_r outputs",
    "options_page": "options.html",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                "ftp:\/\/*\/*",
                "file:\/\/\/*"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_end",
            "all_frames": true
        }
    ],
    "web_accessible_resources": [
        "jsonview.css",
        "jsonview-core.css",
        "content_error.css",
        "options.png",
        "close_icon.gif",
        "error.gif"
    ],
    "permissions": [
        "clipboardWrite",
        "http:\/\/*\/",
        "contextMenus",
        "https:\/\/*\/",
        "ftp:\/\/*\/"
    ],
    "manifest_version": 2
}