Advanced WebSocket Client

Construct custom Web Socket requests and handle responses to directly test your Web Socket services.

Advanced WebSocket Client란 무엇입니까?

Advanced WebSocket Client은(는) Alexandr Mekh에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Construct custom Web Socket requests and handle responses to directly test your Web Socket services."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

Advanced WebSocket Client 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Advanced WebSocket Client is an extension for Google Chrome to help construct custom Web Socket requests and handle responses to directly test your Web Socket services.

It has been developed to support JSON request/response format and the main feature is that you don't have to format your request strictly as it required by the RFC - you may use either a single-quoted, double-quoted or no-quoted strings as a string keys and values as well as to use trailing commas in object literals.

Also, it supports code line/block comments in the same way as in JavaScript.

Shortcats:
    F1 - fullscreen on/off
    F2 - line wrapping on/off
    Ctrl-Alt-J - format JSON
    Ctrl-Q - fold/unfold a code block
    Ctrl-/ - comment/uncomment line/block                    

확장 프로그램 기본 정보

이름 Advanced WebSocket Client Advanced WebSocket Client
ID lgimpnfdefcpkicbflpmainbcdnlblej
공식 URL https://chromewebstore.google.com/detail/advanced-websocket-client/lgimpnfdefcpkicbflpmainbcdnlblej
설명 Construct custom Web Socket requests and handle responses to directly test your Web Socket services.
파일 크기 227 KB
설치 횟수 876
현재 버전 1.0.1
최근 업데이트 2020-11-28
출시 날짜 2020-01-25
평점 3.67/5 총 3 개의 평점
개발자 Alexandr Mekh
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/mekh/advanced-websocket-client
개인정보 보호 정책 페이지 URL https://github.com/mekh/advanced-websocket-client/blob/master/PRIVACY.md
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Advanced WebSocket Client",
    "short_name": "WebSocket",
    "author": "Alexandr Mekh",
    "homepage_url": "https:\/\/github.com\/mekh\/advanced-websocket-client",
    "manifest_version": 2,
    "version": "1.0.1",
    "description": "Construct custom Web Socket requests and handle responses to directly test your Web Socket services.",
    "icons": {
        "16": "resources\/icon_016.png",
        "32": "resources\/icon_032.png",
        "48": "resources\/icon_048.png",
        "64": "resources\/icon_064.png",
        "128": "resources\/icon_128.png"
    },
    "browser_action": {
        "default_icon": {
            "32": "resources\/icon_032.png",
            "64": "resources\/icon_064.png"
        }
    },
    "options_page": "index.html",
    "background": {
        "scripts": [
            "background.js"
        ]
    }
}