PieSocket WebSocket Tester

PieSocket WebSocket Tester

Test Websocket connections with ease, supports both secure (wss) and unsecure (ws) protocols.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "PieSocket WebSocket Tester",
  "version": "2.0",
  "description": "Test Websocket connections with ease, supports both secure (wss) and unsecure (ws) protocols.",
  "manifest_version": 2,
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
  "background": {
    "scripts": [
      "js/background.js"
    ],
    "persistent": false
  },
  "browser_action": {
    "default_popup": "tester.html"
  },
  "permissions": [
    "storage"
  ],
  "web_accessible_resources": [
    "pages/advance-tester.html"
  ],
  "icons": {
    "16": "./img/icon16.png",
    "48": "./img/icon48.png",
    "128": "./img/icon128.png"
  }
}