JSONView

View JSON documents in the browser.

JSONView là gì?

JSONView là một tiện ích mở rộng Chrome được phát triển bởi https://jsonview.com, và tính năng chính của nó là "View JSON documents in the browser.".

Ả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 JSONView

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

                        Normally when encountering a JSON document (content type "application/json"), the browser simply shows plain text. With the JSONView extension, JSON documents are formatted, highlighted, and arrays and objects can be collapsed. Even if the JSON document contains errors, JSONView will still show the raw text. Once you've got JSONView installed, check out http://jsonview.com/example.json to see the extension in action!                    

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

Tên JSONView JSONView
ID gmegofmjomhknnokphhckolhcffdaihd
URL Chính Thức https://chromewebstore.google.com/detail/jsonview/gmegofmjomhknnokphhckolhcffdaihd
Mô tả View JSON documents in the browser.
Kích Thước Tệp 84.08 KB
Số Lần Cài Đặt 212,006
Phiên Bản Hiện Tại 2.6.1
Cập Nhật Lần Cuối 2024-01-11
Ngày Phát Hành 2019-03-16
Đánh Giá 4.10/5 Tổng số 29 Đánh Giá
Nhà Phát Triển https://jsonview.com
Email [email protected]
Loại Thanh Toán free
URL Trang Trợ Giúp https://github.com/bhollis/jsonview/issues
Ngôn Ngữ Được Hỗ Trợ id,de,en,fr,nl,tr,ca,es,it,hu,pt-BR,sv,cs,sr,bg,ru,uk,hi,zh-CN,ja,ko
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "JSONView",
    "version": "2.6.1",
    "description": "__MSG_extensionDescription__",
    "author": "Benjamin Hollis",
    "homepage_url": "https:\/\/jsonview.com\/",
    "icons": {
        "32": "icon.png",
        "48": "icon48.png",
        "64": "icon64.png",
        "128": "icon128.png",
        "256": "icon256.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "permissions": [
        "",
        "webRequest",
        "webRequestBlocking"
    ],
    "applications": {
        "gecko": {
            "id": "[email protected]"
        }
    },
    "web_accessible_resources": [
        "viewer.css",
        "viewer.js"
    ],
    "default_locale": "en"
}