var_masterpiece

Turn a PHP var_dump into a readable, collapsible piece of art! JSONView for var_dump's

var_masterpiece란 무엇입니까?

var_masterpiece은(는) https://probitytechnology.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Turn a PHP var_dump into a readable, collapsible piece of art! JSONView for var_dump's"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

var_masterpiece 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        Turns ugly var_dumps into something much, much better: collapsible, syntax aware, and readable! If you want to make PHP debugging easier, this extension is for you. It is JSONView for php var_dumps.

Reading var_dumps without formatting is very difficult. This is a chrome extension to make var_dumps more user friendly. It works great to debug WordPress, Yii, Laravel, and any other PHP framework! This extension is like JSONView for PHP

ALWAYS FREE! 

This is an opensource project, feel free to contribute:
https://github.com/Rece/var_dump

Other spellings: var dump, var-dump, var_dump                    

확장 프로그램 기본 정보

이름 var_masterpiece var_masterpiece
ID chfhddogiigmfpkcmgfpolalagdcamkl
공식 URL https://chromewebstore.google.com/detail/varmasterpiece/chfhddogiigmfpkcmgfpolalagdcamkl
설명 Turn a PHP var_dump into a readable, collapsible piece of art! JSONView for var_dump's
파일 크기 65.71 KB
설치 횟수 20,000
현재 버전 1.6.6
최근 업데이트 2021-10-04
출시 날짜 2020-03-10
평점 4.10/5 총 67 개의 평점
개발자 https://probitytechnology.com
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/Rece/var_dump
도움말 페이지 URL https://github.com/Rece/var_dump
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "var_masterpiece",
    "description": "Turn a PHP var_dump into a readable, collapsible piece of art! JSONView for var_dump's",
    "version": "1.6.6",
    "icons": {
        "16": "images\/icon2_16.png",
        "48": "images\/icon2_48.png",
        "128": "images\/icon2_128.png"
    },
    "permissions": [
        "contextMenus"
    ],
    "background": {
        "scripts": [
            "core\/addContextMenu.js",
            "core\/background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "css": [
                "css\/var_dump.css"
            ],
            "js": [
                "vendor\/jquery\/jquery.js",
                "core\/var_dump_grammar.js",
                "core\/varDumpParsingTools.js",
                "core\/varDumpDisplayGenerationTools.js",
                "core\/varDumpListenerTools.js",
                "core\/varDumpModalTools.js",
                "core\/varDump.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "\/images\/*"
    ],
    "options_ui": {
        "page": "options\/options.html",
        "chrome_style": true
    }
}