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.”。
扩展截图
下载PieSocket WebSocket Tester扩展crx文件
下载PieSocket WebSocket Tester扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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. 扩展基本信息
| 名称 | |
| 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"
}
} | |