Browser WebSocket Client
Connect to a WebSocket server to send and receive raw JSON messages.
Browser WebSocket Client란 무엇입니까?
Browser WebSocket Client은(는) Unknown에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Connect to a WebSocket server to send and receive raw JSON messages."입니다.
확장 프로그램 스크린샷
Browser WebSocket Client 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Browser WebSocket Client is an extension for Chrome and Firefox that provides a simple method for testing a WebSocket server. It allows you to send and receive raw JSON messages as well as save server URLs, protocols, and messages for later use. Advantages Intuitive Bootstrap 4 user interface Save server URLs, protocols, and messages for later use Login to Chrome or Mozilla and your saved settings will be synced across different devices Pretty-print incoming JSON messages and saved message bodies Export and import the plugin settings so you can easily backup and share them with colleges
확장 프로그램 기본 정보
이름 | Browser WebSocket Client |
ID | mdmlhchldhfnfnkfmljgeinlffmdgkjo |
공식 URL | https://chromewebstore.google.com/detail/browser-websocket-client/mdmlhchldhfnfnkfmljgeinlffmdgkjo |
설명 | Connect to a WebSocket server to send and receive raw JSON messages. |
파일 크기 | 568 KB |
설치 횟수 | 10,000 |
현재 버전 | 1.4.2 |
최근 업데이트 | 2020-03-10 |
출시 날짜 | 2020-03-08 |
평점 | 4.43/5 총 14 개의 평점 |
개발자 | Unknown |
결제 유형 | free |
도움말 페이지 URL | https://github.com/abeade/browser-websocket-client |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Browser WebSocket Client", "manifest_version": 2, "version": "1.4.2", "description": "Connect to a WebSocket server to send and receive raw JSON messages.", "icons": { "16": "icon_016.png", "32": "icon_032.png", "48": "icon_048.png", "128": "icon_128.png" }, "browser_action": { "default_icon": "icon_032.png", "default_title": "Browser WebSocket Client" }, "background": { "scripts": [ "background.js" ] }, "permissions": [ "https:\/\/www.google-analytics.com\/", "storage", "activeTab", "downloads" ], "options_page": "index.html#options" } |