Smart Websocket Client

Smart Websocket Client

A Debugging tool to help you test Websocket APIs

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Smart Websocket Client",
  "description": "A Debugging tool to help you test Websocket APIs",
  "version": "1.0.0",
  "browser_action": {
    "default_icon": "logo.png",
    "default_title": "Click to start!"
  },
  "icons": {
    "16": "logo.png",
    "48": "logo.png",
    "128": "logo.png"
  },
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
  "background": {
    "scripts": [
      "eventPage.js"
    ],
    "persistent": false
  },
  "permissions": []
}