var_masterpiece

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

var_masterpiece là gì?

var_masterpiece là một tiện ích mở rộng Chrome được phát triển bởi https://probitytechnology.com, và tính năng chính của nó là "Turn a PHP var_dump into a readable, collapsible piece of art! JSONView for var_dump's".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng var_masterpiece

Tải xuống các tệp mở rộng var_masterpiece dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên var_masterpiece var_masterpiece
ID chfhddogiigmfpkcmgfpolalagdcamkl
URL Chính Thức https://chromewebstore.google.com/detail/varmasterpiece/chfhddogiigmfpkcmgfpolalagdcamkl
Mô tả Turn a PHP var_dump into a readable, collapsible piece of art! JSONView for var_dump's
Kích Thước Tệp 65.71 KB
Số Lần Cài Đặt 20,000
Phiên Bản Hiện Tại 1.6.6
Cập Nhật Lần Cuối 2021-10-04
Ngày Phát Hành 2020-03-10
Đánh Giá 4.10/5 Tổng số 67 Đánh Giá
Nhà Phát Triển https://probitytechnology.com
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/Rece/var_dump
URL Trang Trợ Giúp https://github.com/Rece/var_dump
Ngôn Ngữ Được Hỗ Trợ 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
    }
}