PieSocket WebSocket Tester
Test Websocket connections with ease, supports both secure (wss) and unsecure (ws) protocols.
What is PieSocket WebSocket Tester?
PieSocket WebSocket Tester is a Chrome extension developed by https://piesocket.com, and its main feature is "Test Websocket connections with ease, supports both secure (wss) and unsecure (ws) protocols.".
Extension Screenshots
Download PieSocket WebSocket Tester Extension CRX File
Download PieSocket WebSocket Tester extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
This tool compliments the online WebSocket tester tool at our website (https://www.piesocket.com/test-online) Since modern browsers do not support connecting to an un-secure host, users who need to test their WebSocket servers with ws:// protocol may use this extension.
Extension Basic Information
Name | PieSocket WebSocket Tester |
ID | oilioclnckkoijghdniegedkbocfpnip |
Official URL | https://chromewebstore.google.com/detail/piesocket-websocket-teste/oilioclnckkoijghdniegedkbocfpnip |
Description | Test Websocket connections with ease, supports both secure (wss) and unsecure (ws) protocols. |
File Size | 271 KB |
Installation Count | 23,710 |
Current Version | 2.0 |
Last Updated | 2023-07-12 |
Publish Date | 2020-09-30 |
Rating | 4.17/5 Total 6 Ratings |
Developer | https://piesocket.com |
[email protected] | |
Payment Type | free |
Extension Website | https://piesocket.com |
Help Page URL | https://piesocket.com |
Privacy Policy Page URL | https://www.piesocket.com/legal/privacy-policy |
Supported Languages | en-US |
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" } } |