JaSON

JaSON

A simple, easy to use HTTP client to send API requests from within Chrome and see formatted, syntax highlighted responses.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "JaSON",
  "version": "5.0.25",
  "manifest_version": 2,
  "description": "A simple, easy to use HTTP client to send API requests from within Chrome and see formatted, syntax highlighted responses.",
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "browser_action": {
    "default_title": "JaSON",
    "default_icon": {
      "128": "jason-128x128.png",
      "256": "jason-256x256.png",
      "512": "jason-256x256.png"
    }
  },
  "icons": {
    "128": "jason-128x128.png",
    "256": "jason-256x256.png",
    "512": "jason-256x256.png"
  },
  "permissions": [
    "http://*/*",
    "https://*/*"
  ]
}