DJSON. JSON Viewer & Formatter

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

什麼是DJSON. JSON Viewer & Formatter?

DJSON. JSON Viewer & Formatter是由dar.desantis開發的Chrome擴展程式,該擴展的主要功能是“Extension to format and view JSON, from Web, Input or File.”。

擴展截圖

screenshot
screenshot
screenshot

下載DJSON. JSON Viewer & Formatter擴展crx文件

下載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
官方網址 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"
    ]
}