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 là gì?

JSON Viewer React là một tiện ích mở rộng Chrome được phát triển bởi seeto.alexander, và tính năng chính của nó là "JSON viewer built using ReactJS. View full JSON paths on hover, copy full paths or path values, and toggle collapse of all objects.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng JSON Viewer React

Tải xuống các tệp mở rộng JSON Viewer React dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

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

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên JSON Viewer React JSON Viewer React
ID icmodedamhnefjjpoiiajlpeldehdofi
URL Chính Thức https://chromewebstore.google.com/detail/json-viewer-react/icmodedamhnefjjpoiiajlpeldehdofi
Mô tả JSON viewer built using ReactJS. View full JSON paths on hover, copy full paths or path values, and toggle collapse of all objects.
Kích Thước Tệp 882 KB
Số Lần Cài Đặt 529
Phiên Bản Hiện Tại 1.0.2
Cập Nhật Lần Cuối 2022-11-13
Ngày Phát Hành 2019-03-08
Đánh Giá 5.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển seeto.alexander
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/ASeeto/json-viewer-react
Ngôn Ngữ Được Hỗ Trợ 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'"
}