PieSocket WebSocket Tester
Test Websocket connections with ease, supports both secure (wss) and unsecure (ws) protocols.
Vad är PieSocket WebSocket Tester?
PieSocket WebSocket Tester är en Chrome-tillägg utvecklad av https://piesocket.com, och dess huvudfunktion är "Test Websocket connections with ease, supports both secure (wss) and unsecure (ws) protocols.".
Tilläggsskärmbilder
Ladda ner PieSocket WebSocket Tester-förlängningens CRX-fil
Ladda ner PieSocket WebSocket Tester-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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.
Grundläggande Information om Tillägg
Namn | PieSocket WebSocket Tester |
ID | oilioclnckkoijghdniegedkbocfpnip |
Officiell webbadress | https://chromewebstore.google.com/detail/piesocket-websocket-teste/oilioclnckkoijghdniegedkbocfpnip |
Beskrivning | Test Websocket connections with ease, supports both secure (wss) and unsecure (ws) protocols. |
Filstorlek | 271 KB |
Antal Installationer | 23,710 |
Aktuell Version | 2.0 |
Senast Uppdaterad | 2023-07-12 |
Publiceringsdatum | 2020-09-30 |
Betyg | 4.17/5 Totalt 6 Betyg |
Utvecklare | https://piesocket.com |
E-post | [email protected] |
Betalningssätt | free |
Tilläggswebbplats | https://piesocket.com |
Hjälpsida URL | https://piesocket.com |
URL till Sekretesspolicy Sidan | https://www.piesocket.com/legal/privacy-policy |
Stödda Språk | 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" } } |