Smart Websocket Client
A Debugging tool to help you test Websocket APIs
Smart Websocket Client란 무엇입니까?
Smart Websocket Client은(는) Luo Gang에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A Debugging tool to help you test Websocket APIs"입니다.
확장 프로그램 스크린샷
Smart Websocket Client 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Smart WebSocket Client is an extension for Google Chrome to help test your Web Socket services. 1. Enter the URL for your Web Socket server. 2. Click Connect. 3. Input request text, then click Send. 4. The extension show response messages. This project is under active development. Feel free to post issues on github.
확장 프로그램 기본 정보
이름 | Smart Websocket Client |
ID | omalebghpgejjiaoknljcfmglgbpocdp |
공식 URL | https://chromewebstore.google.com/detail/smart-websocket-client/omalebghpgejjiaoknljcfmglgbpocdp |
설명 | A Debugging tool to help you test Websocket APIs |
파일 크기 | 261 KB |
설치 횟수 | 42,457 |
현재 버전 | 1.0.0 |
최근 업데이트 | 2016-01-22 |
출시 날짜 | 2015-09-22 |
평점 | 3.90/5 총 41 개의 평점 |
개발자 | Luo Gang |
결제 유형 | free |
도움말 페이지 URL | https://github.com/crysislinux/smart_websocket_client |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Smart Websocket Client", "description": "A Debugging tool to help you test Websocket APIs", "version": "1.0.0", "browser_action": { "default_icon": "logo.png", "default_title": "Click to start!" }, "icons": { "16": "logo.png", "48": "logo.png", "128": "logo.png" }, "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'", "background": { "scripts": [ "eventPage.js" ], "persistent": false }, "permissions": [] } |