JSONView-HATEOAS

View JSON documents in the browser.

Hvad er JSONView-HATEOAS?

JSONView-HATEOAS er en Chrome-udvidelse udviklet af r3wald, og dens hovedfunktion er "View JSON documents in the browser.".

Udvidelsesskærmbilleder

screenshot

Download JSONView-HATEOAS-udvidelses-CRX-fil

Download JSONView-HATEOAS-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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.                    

Grundlæggende oplysninger om udvidelsen

Navn JSONView-HATEOAS JSONView-HATEOAS
ID lcnackgadgeghepobofcongbnjajafag
Officiel URL https://chromewebstore.google.com/detail/jsonview-hateoas/lcnackgadgeghepobofcongbnjajafag
Beskrivelse View JSON documents in the browser.
Filstørrelse 80.73 KB
Antal Installationer 963
Nuværende Version 0.0.1
Senest Opdateret 2020-03-27
Udgivelsesdato 2020-03-24
Bedømmelse 5.00/5 Samlet 1 Bedømmelser
Udvikler r3wald
Betalingsmetode free
Understøttede Sprog 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"
}