DJSON. JSON Viewer & Formatter

Extension to format and view JSON, from Web, Input or File.

DJSON. JSON Viewer & Formatterคืออะไร?

DJSON. JSON Viewer & Formatter เป็นส่วนขยายของ Chrome ที่พัฒนาโดย dar.desantis และคุณลักษณะหลักของมันคือ "Extension to format and view JSON, from Web, Input or File."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย DJSON. JSON Viewer & Formatter

ดาวน์โหลดไฟล์ส่วนขยาย DJSON. JSON Viewer & Formatter ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        FEATURES
* Format JSON and JSONP input or responses
* Minify or Beautify JSON
* Theme support
* Syntax highlighting
* Collapsible trees, with indent guides
* Recursive collapsible elements
* Clickable URLs
* Toggle between raw and parsed JSON
* Line numbers
* Works on any valid JSON page – URL doesn't matter
* Works on local files too (if you enable this in `chrome://extensions`)
* You can inspect the JSON by typing `djson` in the console
* Counts items and properties in a collection
* Show JSON path of the elements on hover and copy it with the context menu
* Option to start with JSON collapsed (always or if the file is big)
* Recognize nested JSON strings in properties value
* Hashes, Encode, Time Strings, Numbers utils

Pro Tip
* Hold down control (or cmd on Mac) while collapsing a tree if you want to collapse all its siblings too.
* Hold down shift while collapsing a tree if you want to collapse also all his children                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ DJSON. JSON Viewer & Formatter DJSON. JSON Viewer & Formatter
ID chaeijjekipecdajnijdldjjipaegdjc
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/djson-json-viewer-formatt/chaeijjekipecdajnijdldjjipaegdjc
คำอธิบาย Extension to format and view JSON, from Web, Input or File.
ขนาดไฟล์ 126 KB
จำนวนการติดตั้ง 11,969
เวอร์ชันปัจจุบัน 0.6.0
อัปเดตครั้งล่าสุด 2019-03-23
วันที่เผยแพร่ 2019-03-23
คะแนน 4.77/5 รวมทั้งหมด 66 คะแนน
ผู้พัฒนา dar.desantis
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/dardesantis/DJSON-Viewer
URL หน้าช่วยเหลือ https://github.com/dardesantis/DJSON-Viewer/issues
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "DJSON. JSON Viewer & Formatter",
    "short_name": "DJSON Viewer",
    "version": "0.6.0",
    "manifest_version": 2,
    "description": "Extension to format and view JSON, from Web, Input or File.",
    "homepage_url": "https:\/\/github.com\/dardesantis\/DJSON-Viewer",
    "minimum_chrome_version": "35",
    "offline_enabled": true,
    "icons": {
        "16": "icons\/16.png",
        "32": "icons\/32.png",
        "128": "icons\/128.png"
    },
    "browser_action": {
        "default_icon": {
            "32": "icons\/32.png"
        },
        "default_title": "DJSON Viewer",
        "default_popup": "popup.html"
    },
    "background": {
        "page": "popup.html",
        "persistent": true
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "js\/content.js"
            ],
            "run_at": "document_start"
        }
    ],
    "permissions": [
        "",
        "clipboardWrite",
        "tabs",
        "contextMenus"
    ]
}