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
公式URL 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
Eメール [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",
        ""
    ]
}