WS Inspector

Allows viewing binary WebSocket frame contents, which the default DevTools does not support. Currently the data is shown in HTML…

Vad är WS Inspector?

WS Inspector är en Chrome-tillägg utvecklad av meded90, och dess huvudfunktion är "Allows viewing binary WebSocket frame contents, which the default DevTools does not support. Currently the data is shown in HTML…".

Tilläggsskärmbilder

screenshot

Ladda ner WS Inspector-förlängningens CRX-fil

Ladda ner WS Inspector-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

                        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.                    

Grundläggande Information om Tillägg

Namn WS Inspector WS Inspector
ID hheflmmonjomijpaiffckjhlcjdiblae
Officiell webbadress https://chrome.google.com/webstore/detail/ws-inspector/hheflmmonjomijpaiffckjhlcjdiblae
Beskrivning Allows viewing binary WebSocket frame contents, which the default DevTools does not support. Currently the data is shown in HTML…
Filstorlek 202 KB
Antal Installationer 134
Aktuell Version 0.0.6
Senast Uppdaterad 2021-12-05
Publiceringsdatum 2021-01-18
Utvecklare meded90
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://github.com/meded90/ws-inspector
Hjälpsida URL https://github.com/meded90/ws-inspector/issues
Stödda Språk 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"
}