WS Inspector

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

WS Inspector란 무엇입니까?

WS Inspector은(는) meded90에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Allows viewing binary WebSocket frame contents, which the default DevTools does not support. Currently the data is shown in HTML…"입니다.

확장 프로그램 스크린샷

screenshot

WS Inspector 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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.                    

확장 프로그램 기본 정보

이름 WS Inspector WS Inspector
ID hheflmmonjomijpaiffckjhlcjdiblae
공식 URL https://chrome.google.com/webstore/detail/ws-inspector/hheflmmonjomijpaiffckjhlcjdiblae
설명 Allows viewing binary WebSocket frame contents, which the default DevTools does not support. Currently the data is shown in HTML…
파일 크기 202 KB
설치 횟수 134
현재 버전 0.0.6
최근 업데이트 2021-12-05
출시 날짜 2021-01-18
개발자 meded90
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/meded90/ws-inspector
도움말 페이지 URL https://github.com/meded90/ws-inspector/issues
지원되는 언어 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"
}