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
Qu'est-ce que JSON to Java object ?
JSON to Java object est une extension Chrome développée par claude2k12, et sa fonction principale est "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".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension JSON to Java object
Téléchargez les fichiers d'extension JSON to Java object au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | JSON to Java object |
ID | omaamkdimlgbedepkcohaofjdjcilobc |
URL Officiel | https://chromewebstore.google.com/detail/json-to-java-object/omaamkdimlgbedepkcohaofjdjcilobc |
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 |
Taille du Fichier | 271 KB |
Nombre d'Installations | 386 |
Version Actuelle | 1.5.2 |
Dernière Mise à Jour | 2018-02-23 |
Date de Publication | 2018-02-22 |
Évaluation | 5.00/5 Total 2 Évaluations |
Développeur | claude2k12 |
[email protected] | |
Type de Paiement | free |
Langues Prises en Charge | 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" ] } |