WS Inspector
Allows viewing binary WebSocket frame contents, which the default DevTools does not support. Currently the data is shown in HTML…
What is WS Inspector?
WS Inspector is a Chrome extension developed by meded90, and its main feature is "Allows viewing binary WebSocket frame contents, which the default DevTools does not support. Currently the data is shown in HTML…".
Extension Screenshots
Download WS Inspector Extension CRX File
Download WS Inspector 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
Allows viewing binary WebSocket frame contents, which the default DevTools does not support. Currently the data is shown in HTML based hex view, and does not work well for large frameStore (~10K+). Considering switching to canvas based view instead. If anyone knows an existing hex viewer module that does not use Angular, I'd be happy to use it instead.
Extension Basic Information
Name | WS Inspector |
ID | hheflmmonjomijpaiffckjhlcjdiblae |
Official URL | https://chrome.google.com/webstore/detail/ws-inspector/hheflmmonjomijpaiffckjhlcjdiblae |
Description | Allows viewing binary WebSocket frame contents, which the default DevTools does not support. Currently the data is shown in HTML… |
File Size | 202 KB |
Installation Count | 134 |
Current Version | 0.0.6 |
Last Updated | 2021-12-05 |
Publish Date | 2021-01-18 |
Developer | meded90 |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/meded90/ws-inspector |
Help Page URL | https://github.com/meded90/ws-inspector/issues |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "WS Inspector", "minimum_chrome_version": "88", "permissions": [ "debugger", "storage" ], "host_permissions": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "icons": { "128": "icon-128.png" }, "manifest_version": 3, "devtools_page": "main.html", "content_security_policy": { "script-src": "self unsafe-eval", "unsafe-eval": "object-src self", "unsafe-inline": "self" }, "version": "0.0.6" } |