JSONView-HATEOAS

View JSON documents in the browser.

What is JSONView-HATEOAS?

JSONView-HATEOAS is a Chrome extension developed by r3wald, and its main feature is "View JSON documents in the browser.".

Extension Screenshots

screenshot

Download JSONView-HATEOAS Extension CRX File

Download JSONView-HATEOAS extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name JSONView-HATEOAS JSONView-HATEOAS
ID lcnackgadgeghepobofcongbnjajafag
Official URL https://chromewebstore.google.com/detail/jsonview-hateoas/lcnackgadgeghepobofcongbnjajafag
Description View JSON documents in the browser.
File Size 80.73 KB
Installation Count 963
Current Version 0.0.1
Last Updated 2020-03-27
Publish Date 2020-03-24
Rating 5.00/5 Total 1 Ratings
Developer r3wald
Payment Type free
Supported Languages 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"
}