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 - это расширение Chrome, разработанное claude2k12, и его основная функция - "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".
Снимки экрана расширения
Скачать файл CRX расширения JSON to Java object
Скачайте файлы расширений 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 |
| Официальный 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"
]
} | |