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
官方網址 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
電子郵箱 [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
}