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

Cos'è JSON to Java object?

JSON to Java object è un'estensione di Chrome sviluppata da claude2k12, e la sua funzione principale è "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".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione JSON to Java object

Scarica i file di estensione JSON to Java object in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome JSON to Java object JSON to Java object
ID omaamkdimlgbedepkcohaofjdjcilobc
URL Ufficiale https://chromewebstore.google.com/detail/json-to-java-object/omaamkdimlgbedepkcohaofjdjcilobc
Descrizione 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
Dimensione del File 271 KB
Conteggio Installazioni 386
Versione Corrente 1.5.2
Ultimo Aggiornamento 2018-02-23
Data di Pubblicazione 2018-02-22
Valutazione 5.00/5 Totale 2 Valutazioni
Sviluppatore claude2k12
Email [email protected]
Tipo di Pagamento free
Lingue Supportate 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"
    ]
}