PieSocket WebSocket Tester

Test Websocket connections with ease, supports both secure (wss) and unsecure (ws) protocols.

PieSocket WebSocket Tester란 무엇입니까?

PieSocket WebSocket Tester은(는) https://piesocket.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Test Websocket connections with ease, supports both secure (wss) and unsecure (ws) protocols."입니다.

확장 프로그램 스크린샷

screenshot

PieSocket WebSocket Tester 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        This tool compliments the online WebSocket tester tool at our website (https://www.piesocket.com/test-online) 

Since modern browsers do not support connecting to an un-secure  host, users who need to test their WebSocket servers with ws:// protocol may use this extension.                    

확장 프로그램 기본 정보

이름 PieSocket WebSocket Tester PieSocket WebSocket Tester
ID oilioclnckkoijghdniegedkbocfpnip
공식 URL https://chromewebstore.google.com/detail/piesocket-websocket-teste/oilioclnckkoijghdniegedkbocfpnip
설명 Test Websocket connections with ease, supports both secure (wss) and unsecure (ws) protocols.
파일 크기 271 KB
설치 횟수 23,710
현재 버전 2.0
최근 업데이트 2023-07-12
출시 날짜 2020-09-30
평점 4.17/5 총 6 개의 평점
개발자 https://piesocket.com
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://piesocket.com
도움말 페이지 URL https://piesocket.com
개인정보 보호 정책 페이지 URL https://www.piesocket.com/legal/privacy-policy
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "PieSocket WebSocket Tester",
    "version": "2.0",
    "description": "Test Websocket connections with ease, supports both secure (wss) and unsecure (ws) protocols.",
    "manifest_version": 2,
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "background": {
        "scripts": [
            "js\/background.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_popup": "tester.html"
    },
    "permissions": [
        "storage"
    ],
    "web_accessible_resources": [
        "pages\/advance-tester.html"
    ],
    "icons": {
        "16": ".\/img\/icon16.png",
        "48": ".\/img\/icon48.png",
        "128": ".\/img\/icon128.png"
    }
}