PHPView

Validate and view PHP print_r outputs

What is PHPView?

PHPView is a Chrome extension developed by Unknown, and its main feature is "Validate and view PHP print_r outputs".

Extension Screenshots

screenshot

Download PHPView Extension CRX File

Download PHPView 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

                        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!                    

Extension Basic Information

Name PHPView PHPView
ID nlkobfbkblfhlcobdomlhmpbbhmcbkfd
Official URL https://chromewebstore.google.com/detail/phpview/nlkobfbkblfhlcobdomlhmpbbhmcbkfd
Description Validate and view PHP print_r outputs
File Size 85.75 KB
Installation Count 20,000
Current Version 0.1.5
Last Updated 2014-07-08
Publish Date 2014-07-07
Rating 4.28/5 Total 39 Ratings
Developer Unknown
Email [email protected]
Payment Type free
Extension Website https://github.com/theypsilon/PHPView-for-Chrome
Supported Languages 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
}