JSON to Java object

This extension allows you to turn a JSON into a POJO so you can use it as a JSON response holder or whatever you desire

Was ist JSON to Java object?

JSON to Java object ist eine Chrome-Erweiterung, die von claude2k12 entwickelt wurde, und ihr Hauptmerkmal ist "This extension allows you to turn a JSON into a POJO so you can use it as a JSON response holder or whatever you desire".

Erweiterungsscreenshots

screenshot

JSON to Java object-Erweiterungs-CRX-Datei herunterladen

Laden Sie JSON to Java object-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        This extension aims to increase developer productivity by allowing you to generate Plain old java object from a well defined JSON string. streamlining the mundane process of manually writing getters and setters. 

It supports the basic data types.                    

Grundlegende Informationen zur Erweiterung

Name JSON to Java object JSON to Java object
ID omaamkdimlgbedepkcohaofjdjcilobc
Offizielle URL https://chromewebstore.google.com/detail/json-to-java-object/omaamkdimlgbedepkcohaofjdjcilobc
Beschreibung This extension allows you to turn a JSON into a POJO so you can use it as a JSON response holder or whatever you desire
Dateigröße 271 KB
Installationsanzahl 386
Aktuelle Version 1.5.2
Letztes Update 2018-02-23
Veröffentlichungsdatum 2018-02-22
Bewertung 5.00/5 Insgesamt 2 Bewertungen
Entwickler claude2k12
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "JSON to Java object",
    "description": "This extension allows you to turn a JSON into a POJO so you can use it as a JSON response holder or whatever you desire",
    "version": "1.5.2",
    "short_name": "JSONToJava",
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "permissions": [
        "storage"
    ]
}