JSON Viewer

Port of Firefox's JSON Viewer

JSON Viewer là gì?

JSON Viewer là một tiện ích mở rộng Chrome được phát triển bởi Rongjian Zhang, và tính năng chính của nó là "Port of Firefox's JSON Viewer".

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

screenshot

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

Tải xuống các tệp mở rộng JSON Viewer 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

                        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                    

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

Tên JSON Viewer JSON Viewer
ID efknglbfhoddmmfabeihlemgekhhnabb
URL Chính Thức https://chromewebstore.google.com/detail/json-viewer/efknglbfhoddmmfabeihlemgekhhnabb
Mô tả Port of Firefox's JSON Viewer
Kích Thước Tệp 136 KB
Số Lần Cài Đặt 38,037
Phiên Bản Hiện Tại 2.1.0
Cập Nhật Lần Cuối 2023-09-17
Ngày Phát Hành 2018-05-27
Đánh Giá 4.75/5 Tổng số 40 Đánh Giá
Nhà Phát Triển Rongjian Zhang
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/pd4d10/json-viewer
URL Trang Trợ Giúp https://github.com/pd4d10/json-viewer
Ngôn Ngữ Được Hỗ Trợ 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"
    ]
}