JSON Formatter

Makes JSON easy to read. Open source.

什麼是JSON Formatter?

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

擴展截圖

screenshot
screenshot

下載JSON Formatter擴展crx文件

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

擴展使用說明

                        based on https://github.com/callumlocke/json-formatter
add force to return application/json content-type action;
change the font;
fixed JSONP leading semicolon bug;
dark mode.                    

擴展基本資訊

名稱 JSON Formatter JSON Formatter
ID cfaihfocdnniaholfnjcemnfhcjchohb
官方網址 https://chromewebstore.google.com/detail/json-formatter/cfaihfocdnniaholfnjcemnfhcjchohb
簡介 Makes JSON easy to read. Open source.
檔案大小 30.93 KB
安裝次數 12,295
目前版本 0.6.0.3
更新時間 2022-06-18
上架時間 2020-05-10
評分 4.43/5 共 21 次評分
開發者 https://www.cafeboy.org
電子郵箱 [email protected]
付費類型 free
擴展官網 https://github.com/jumkey/json-formatter
說明頁面URL https://github.com/jumkey/json-formatter/issues
隱私政策頁面URL https://www.cafeboy.org/privacy.html
支援的語言 en,zh-CN
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "JSON Formatter",
    "version": "0.6.0.3",
    "manifest_version": 2,
    "description": "Makes JSON easy to read. Open source.",
    "homepage_url": "https:\/\/github.com\/jumkey\/json-formatter",
    "minimum_chrome_version": "21",
    "icons": {
        "128": "icons\/128.png",
        "32": "icons\/32.png"
    },
    "default_locale": "en",
    "background": {
        "scripts": [
            "js\/background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "js\/content.js"
            ],
            "run_at": "document_start"
        }
    ],
    "browser_action": {
        "default_title": "__MSG_reload__"
    },
    "permissions": [
        "webRequest",
        "webRequestBlocking",
        ""
    ]
}