JSON Viewer

Port of Firefox's JSON Viewer

JSON Viewerとは何ですか?

JSON ViewerはRongjian Zhangによって開発されたChromeの拡張機能で、その主な機能は「Port of Firefox's JSON Viewer」です。

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

screenshot

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

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

拡張機能の使用方法

                        This is a port of Firefox's JSON Viewer

If you open a JSON file in the browser, it is parsed and given syntax highlighting. Arrays and objects are shown collapsed, and you can expand them using the "+" icons.

Source code:
https://github.com/pd4d10/json-viewer                    

拡張機能の基本情報

名前 JSON Viewer JSON Viewer
ID efknglbfhoddmmfabeihlemgekhhnabb
公式URL https://chromewebstore.google.com/detail/json-viewer/efknglbfhoddmmfabeihlemgekhhnabb
説明 Port of Firefox's JSON Viewer
ファイルサイズ 136 KB
インストール数 38,037
現在のバージョン 2.1.0
最終更新日 2023-09-17
公開日 2018-05-27
評価 4.75/5 合計 40 レビュー
開発者 Rongjian Zhang
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://github.com/pd4d10/json-viewer
ヘルプページのURL https://github.com/pd4d10/json-viewer
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "JSON Viewer",
    "version": "2.1.0",
    "description": "Port of Firefox's JSON Viewer",
    "offline_enabled": true,
    "homepage_url": "https:\/\/github.com\/pd4d10\/json-viewer",
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "dist\/content-script.js"
            ],
            "run_at": "document_end"
        }
    ],
    "icons": {
        "128": "icon.png"
    },
    "permissions": [
        "storage"
    ]
}