Web Socket Client
A tool for manual web socket testing.
Web Socket Client란 무엇입니까?
Web Socket Client은(는) mschurr에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A tool for manual web socket testing."입니다.
확장 프로그램 스크린샷
Web Socket Client 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
A simple in-browser web socket client UI. This extension is primarily intended for use by web developers looking for an easy way to test web socket endpoints as they develop. To use this extension, click the 'WS Client' icon that appears to the right of your address bar or click 'Options' for this extension in 'chrome://extensions'. Requires no permissions. Source Code & Issue Tracker: https://github.com/mschurr/chrome-web-socket-client
확장 프로그램 기본 정보
이름 | Web Socket Client |
ID | lifhekgaodigcpmnakfhaaaboididbdn |
공식 URL | https://chromewebstore.google.com/detail/web-socket-client/lifhekgaodigcpmnakfhaaaboididbdn |
설명 | A tool for manual web socket testing. |
파일 크기 | 41.06 KB |
설치 횟수 | 9,698 |
현재 버전 | 1.0.0 |
최근 업데이트 | 2021-07-25 |
출시 날짜 | 2017-02-01 |
평점 | 4.25/5 총 12 개의 평점 |
개발자 | mschurr |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/mschurr/chrome-web-socket-client |
도움말 페이지 URL | https://github.com/mschurr/chrome-web-socket-client |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Web Socket Client", "manifest_version": 2, "version": "1.0.0", "description": "A tool for manual web socket testing.", "icons": { "16": "icon_128.png", "32": "icon_128.png", "48": "icon_128.png", "128": "icon_128.png" }, "browser_action": { "default_icon": "icon_128.png" }, "options_page": "index.html", "background": { "scripts": [ "background.js" ] } } |