JSONView-HATEOAS

View JSON documents in the browser.

什麼是JSONView-HATEOAS?

JSONView-HATEOAS是由r3wald開發的Chrome擴展程式,該擴展的主要功能是“View JSON documents in the browser.”。

擴展截圖

screenshot

下載JSONView-HATEOAS擴展crx文件

下載JSONView-HATEOAS擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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.                    

擴展基本資訊

名稱 JSONView-HATEOAS JSONView-HATEOAS
ID lcnackgadgeghepobofcongbnjajafag
官方網址 https://chromewebstore.google.com/detail/jsonview-hateoas/lcnackgadgeghepobofcongbnjajafag
簡介 View JSON documents in the browser.
檔案大小 80.73 KB
安裝次數 963
目前版本 0.0.1
更新時間 2020-03-27
上架時間 2020-03-24
評分 5.00/5 共 1 次評分
開發者 r3wald
付費類型 free
支援的語言 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"
}