JSONView

View JSON documents in the browser.

JSONViewとは何ですか?

JSONViewはhttps://jsonview.comによって開発されたChromeの拡張機能で、その主な機能は「View JSON documents in the browser.」です。

拡張機能のスクリーンショット

screenshot

JSONView拡張機能のCRXファイルをダウンロード

JSONView拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        Normally when encountering a JSON document (content type "application/json"), the browser simply shows plain text. With the JSONView extension, JSON documents are formatted, highlighted, and arrays and objects can be collapsed. Even if the JSON document contains errors, JSONView will still show the raw text. Once you've got JSONView installed, check out http://jsonview.com/example.json to see the extension in action!                    

拡張機能の基本情報

名前 JSONView JSONView
ID gmegofmjomhknnokphhckolhcffdaihd
公式URL https://chromewebstore.google.com/detail/jsonview/gmegofmjomhknnokphhckolhcffdaihd
説明 View JSON documents in the browser.
ファイルサイズ 84.08 KB
インストール数 212,006
現在のバージョン 2.6.1
最終更新日 2024-01-11
公開日 2019-03-16
評価 4.10/5 合計 29 レビュー
開発者 https://jsonview.com
Eメール [email protected]
支払い方法 free
ヘルプページのURL https://github.com/bhollis/jsonview/issues
対応言語 id,de,en,fr,nl,tr,ca,es,it,hu,pt-BR,sv,cs,sr,bg,ru,uk,hi,zh-CN,ja,ko
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "JSONView",
    "version": "2.6.1",
    "description": "__MSG_extensionDescription__",
    "author": "Benjamin Hollis",
    "homepage_url": "https:\/\/jsonview.com\/",
    "icons": {
        "32": "icon.png",
        "48": "icon48.png",
        "64": "icon64.png",
        "128": "icon128.png",
        "256": "icon256.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "permissions": [
        "",
        "webRequest",
        "webRequestBlocking"
    ],
    "applications": {
        "gecko": {
            "id": "[email protected]"
        }
    },
    "web_accessible_resources": [
        "viewer.css",
        "viewer.js"
    ],
    "default_locale": "en"
}