JSON Formatter

Makes JSON easy to read. Open source.

什麼是JSON Formatter?

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

擴展截圖

screenshot
screenshot

下載JSON Formatter擴展crx文件

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

擴展使用說明

                        The original JSON Formatter, now with optional dark mode 🌚

Auto-formats JSON when you load it in a browser tab.

FEATURES

- Fast, even on very long JSON pages
- Dark mode
- Syntax highlighting
- Collapsible trees, with indent guides
- Clickable URLs
- Negligible performance impact on non-JSON pages (less than 1 millisecond)
- Works on any valid JSON page – URL doesn't matter
- Buttons for toggling between raw and parsed JSON

Note: this extension might clash with other browser extensions that modify the DOM before it runs. If it doesn't seem to be working, try disabling other extensions. If it clashes with an extension you need, open an issue and I'll try to find a solution.

SOME EXAMPLE JSON PAGES to try it out on:
https://callumlocke.github.io/json-formatter/

PRO TIP
Hold down control (or cmd on Mac) while collapsing a tree - collapses all siblings too.

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

SOURCE CODE
github.com/callumlocke/json-formatter

ISSUES
github.com/callumlocke/json-formatter/issues

WHO MADE THIS
twitter.com/callumlocke                    

擴展基本資訊

名稱 JSON Formatter JSON Formatter
ID bcjindcccaagfpapjjmafapmmgkkhgoa
官方網址 https://chromewebstore.google.com/detail/json-formatter/bcjindcccaagfpapjjmafapmmgkkhgoa
簡介 Makes JSON easy to read. Open source.
檔案大小 20.7 KB
安裝次數 2,677,987
目前版本 0.7.1
更新時間 2023-01-02
上架時間 2020-04-20
評分 4.58/5 共 1820 次評分
開發者 https://callumlocke.com
電子郵箱 [email protected]
付費類型 free
擴展官網 https://github.com/callumlocke/json-formatter
說明頁面URL https://github.com/callumlocke/json-formatter/issues
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "JSON Formatter",
    "version": "0.7.1",
    "manifest_version": 3,
    "description": "Makes JSON easy to read. Open source.",
    "homepage_url": "https:\/\/github.com\/callumlocke\/json-formatter",
    "minimum_chrome_version": "88",
    "icons": {
        "128": "icons\/128.png",
        "32": "icons\/32.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "storage"
    ],
    "host_permissions": [
        "*:\/\/*\/*",
        ""
    ],
    "options_ui": {
        "page": "options\/options.html",
        "open_in_tab": false
    }
}