JSONView-HATEOAS

View JSON documents in the browser.

JSONView-HATEOAS là gì?

JSONView-HATEOAS là một tiện ích mở rộng Chrome được phát triển bởi r3wald, 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-HATEOAS

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

                        JSONView-HATEOAS
================

This is a fork of Ben Hollis' fabulous [JSONView browser extension](http://jsonview.com).
Focus of this fork is on working with HATEAOS JSON APIs. This means links in all documents
are made clickable. At the moment there are no other changes.                    

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

Tên JSONView-HATEOAS JSONView-HATEOAS
ID lcnackgadgeghepobofcongbnjajafag
URL Chính Thức https://chromewebstore.google.com/detail/jsonview-hateoas/lcnackgadgeghepobofcongbnjajafag
Mô tả View JSON documents in the browser.
Kích Thước Tệp 80.73 KB
Số Lần Cài Đặt 963
Phiên Bản Hiện Tại 0.0.1
Cập Nhật Lần Cuối 2020-03-27
Ngày Phát Hành 2020-03-24
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển r3wald
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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-HATEOAS",
    "version": "0.0.1",
    "description": "__MSG_extensionDescription__",
    "authors": [
        {
            "name": "Robert Ewald",
            "email": "[email protected]"
        },
        {
            "name": "Benjamin Hollis",
            "email": "[email protected]"
        }
    ],
    "homepage_url": "https:\/\/github.com\/r3wald\/jsonview-hateoas",
    "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"
}