var_masterpiece

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

Apa itu var_masterpiece?

var_masterpiece adalah ekstensi Chrome yang dikembangkan oleh https://probitytechnology.com, dan fitur utamanya adalah "Turn a PHP var_dump into a readable, collapsible piece of art! JSONView for var_dump's".

Screenshot Ekstensi

screenshot
screenshot
screenshot

Unduh Berkas CRX Ekstensi var_masterpiece

Unduh file ekstensi var_masterpiece dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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                    

Informasi Dasar Ekstensi

Nama var_masterpiece var_masterpiece
ID chfhddogiigmfpkcmgfpolalagdcamkl
URL Resmi https://chromewebstore.google.com/detail/varmasterpiece/chfhddogiigmfpkcmgfpolalagdcamkl
Deskripsi Turn a PHP var_dump into a readable, collapsible piece of art! JSONView for var_dump's
Ukuran File 65.71 KB
Jumlah Instalasi 20,000
Versi Saat Ini 1.6.6
Terakhir Diperbarui 2021-10-04
Tanggal Publikasi 2020-03-10
Penilaian 4.10/5 Total 67 Penilaian
Pengembang https://probitytechnology.com
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi https://github.com/Rece/var_dump
URL Halaman Bantuan https://github.com/Rece/var_dump
Bahasa yang Didukung 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
    }
}