PostWoman Http Test

PostWoman Http Test

PostWoman is a plug for testing RESTful web services, like postman.

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "version": "1.2.7",
  "default_locale": "zh_CN",
  "name": "__MSG_appName__",
  "description": "__MSG_appDesc__",
  "author": "ihsantang@163.com",
  "icons": {
    "64": "logo.png",
    "128": "logo.png"
  },
  "browser_action": {
    "default_icon": "logo.png",
    "default_title": "__MSG_appName__",
    "default_popup": "index.html"
  },
  "optional_permissions": [
    "http://*/*",
    "https://*/*",
    "cookies"
  ],
  "permissions": [],
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "source/tools/jquery-1.9.1.min.js",
        "source/content_scripts.js"
      ]
    }
  ],
  "background": {
    "page": "background.html"
  }
}