JSON to Java object

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

Merlin
Additional files are visible only to premium users

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"
  ]
}