JSON Viewer

Makes JSON response easy to read.

JSON Viewer là gì?

JSON Viewer là một tiện ích mở rộng Chrome được phát triển bởi https://timleland.com, và tính năng chính của nó là "Makes JSON response easy to read.".

Ả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

                        Open source JSON viewer
FEATURES
   •   JSON & JSONP support
   •   Syntax highlighting
   •   Collapsible trees, with indent guides
   •   Clickable URLs
   •   Toggle between raw and parsed JSON

Source: https://github.com/timleland/Json-Viewer-Extension                    

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

Tên JSON Viewer JSON Viewer
ID bbdgkoocgebebgihgkhfhlpekclhmfem
URL Chính Thức https://chromewebstore.google.com/detail/json-viewer/bbdgkoocgebebgihgkhfhlpekclhmfem
Mô tả Makes JSON response easy to read.
Kích Thước Tệp 59.51 KB
Số Lần Cài Đặt 4,749
Phiên Bản Hiện Tại 2.0.0
Cập Nhật Lần Cuối 2022-02-24
Ngày Phát Hành 2020-09-13
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển https://timleland.com
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://timleland.com/json-viewer-extension/
URL Trang Trợ Giúp https://timleland.com/contact/
URL Trang Chính Sách Bảo Mật https://t.ly/privacy
Ngôn Ngữ Được Hỗ Trợ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "JSON Viewer",
    "homepage_url": "https:\/\/timleland.com\/json-viewer-extension",
    "description": "Makes JSON response easy to read.",
    "version": "2.0.0",
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "vendor\/jquery-3.3.1.min.js",
                "vendor\/json-viewer\/jquery.json-viewer.js",
                "js\/main.js"
            ],
            "css": [
                "vendor\/json-viewer\/jquery.json-viewer.css"
            ],
            "run_at": "document_end"
        }
    ],
    "background": {
        "service_worker": "js\/background.js"
    },
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    }
}