JSON Viewer React

JSON viewer built using ReactJS. View full JSON paths on hover, copy full paths or path values, and toggle collapse of all objects.

JSON Viewer Reactとは何ですか?

JSON Viewer Reactはseeto.alexanderによって開発されたChromeの拡張機能で、その主な機能は「JSON viewer built using ReactJS. View full JSON paths on hover, copy full paths or path values, and toggle collapse of all objects.」です。

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

screenshot
screenshot
screenshot
screenshot
screenshot

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

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

拡張機能の使用方法

                        JSON viewer built using ReactJS. View full JSON paths on hover, copy full paths or path values, and toggle collapse of all objects.                    

拡張機能の基本情報

名前 JSON Viewer React JSON Viewer React
ID icmodedamhnefjjpoiiajlpeldehdofi
公式URL https://chromewebstore.google.com/detail/json-viewer-react/icmodedamhnefjjpoiiajlpeldehdofi
説明 JSON viewer built using ReactJS. View full JSON paths on hover, copy full paths or path values, and toggle collapse of all objects.
ファイルサイズ 882 KB
インストール数 529
現在のバージョン 1.0.2
最終更新日 2022-11-13
公開日 2019-03-08
評価 5.00/5 合計 2 レビュー
開発者 seeto.alexander
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://github.com/ASeeto/json-viewer-react
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "JSON viewer built using ReactJS. View full JSON paths on hover, copy full paths or path values, and toggle collapse of all objects.",
    "version": "1.0.2",
    "name": "JSON Viewer React",
    "browser_action": {
        "default_popup": "popup.html",
        "default_icon": "json-viewer-react-icon-16.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.bundle.js"
            ],
            "run_at": "document_idle"
        }
    ],
    "icons": {
        "16": "json-viewer-react-icon-16.png",
        "48": "json-viewer-react-icon-48.png",
        "128": "json-viewer-react-icon-128.png"
    },
    "permissions": [
        "storage",
        "*:\/\/*\/*",
        ""
    ],
    "manifest_version": 2,
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}