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
什么是JSON to Java object?
JSON to Java object是由claude2k12开发的Chrome扩展程序,该扩展的主要功能是“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”。
扩展截图
下载JSON to Java object扩展crx文件
下载JSON to Java object扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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.
扩展基本信息
名称 | JSON to Java object |
ID | omaamkdimlgbedepkcohaofjdjcilobc |
官方URL | https://chromewebstore.google.com/detail/json-to-java-object/omaamkdimlgbedepkcohaofjdjcilobc |
简介 | 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 |
文件大小 | 271 KB |
安装次数 | 386 |
当前版本 | 1.5.2 |
更新时间 | 2018-02-23 |
上架时间 | 2018-02-22 |
评分 | 5.00/5 共2次评分 |
开发者 | claude2k12 |
电子邮箱 | [email protected] |
付费类型 | free |
支持的语言 | 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" ] } |