JSON Formatter

Makes JSON easy to read. Open source.

什麼是JSON Formatter?

JSON Formatter是由Nik Rolls開發的Chrome擴展程式,該擴展的主要功能是“Makes JSON easy to read. Open source.”。

擴展截圖

screenshot
screenshot

下載JSON Formatter擴展crx文件

下載JSON Formatter擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        Makes JSON easy to read. Open source. A fork of the original (no-longer updated) extension by Callum Locke.

FEATURES
   •   JSON & JSONP support
   •   Syntax highlighting with 36 light and dark themes
   •   Collapsible trees, with indent guides
   •   Line numbers
   •   Clickable URLs
   •   Toggle between raw and parsed JSON
   •   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 "json" in the console

(Note: this extension might clash with other JSON highlighters/beautifiers, like ‘JSONView’, ‘Pretty JSON’ or ‘Sight’ – disable those before trying this.)

PRO TIP
Hold down Ctrl (or Cmd on Mac) while collapsing a tree if you want to collapse all its siblings too.

PRIVACY
No tracking, no advertising, and nothing else nefarious.

SOURCE CODE
github.com/nikrolls/json-formatter

BUGS/SUGGESTIONS
github.com/nikrolls/json-formatter/issues

QUESTIONS
twitter.com/nikrolls                    

擴展基本資訊

名稱 JSON Formatter JSON Formatter
ID mhimpmpmffogbmmkmajibklelopddmjf
官方網址 https://chromewebstore.google.com/detail/json-formatter/mhimpmpmffogbmmkmajibklelopddmjf
簡介 Makes JSON easy to read. Open source.
檔案大小 40.9 KB
安裝次數 45,977
目前版本 0.10.0
更新時間 2017-05-08
上架時間 2017-05-08
評分 4.35/5 共 65 次評分
開發者 Nik Rolls
付費類型 free
擴展官網 https://github.com/nikrolls/json-formatter
說明頁面URL https://github.com/nikrolls/json-formatter/Issues
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "JSON Formatter",
    "version": "0.10.0",
    "manifest_version": 2,
    "description": "Makes JSON easy to read. Open source.",
    "homepage_url": "https:\/\/github.com\/nikrolls\/json-formatter",
    "author": "Nik Rolls, Callum Locke",
    "minimum_edge_version": "40",
    "minimum_chrome_version": "21",
    "icons": {
        "128": "icons\/128.png",
        "32": "icons\/32.png"
    },
    "background": {
        "scripts": [
            "js\/background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "js\/content.js"
            ],
            "run_at": "document_start"
        }
    ],
    "permissions": [
        "storage",
        "*:\/\/*\/*",
        ""
    ]
}