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. 擴展基本資訊
| 名稱 | |
| ID | omaamkdimlgbedepkcohaofjdjcilobc |
| 官方網址 | 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"
]
} | |