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
公式URL 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"
}