Initial commit
BIN
public/favicon.ico
Normal file
After Width: | Height: | Size: 107 KiB |
BIN
public/images/banner-large.png
Normal file
After Width: | Height: | Size: 78 KiB |
BIN
public/images/banner-small.png
Normal file
After Width: | Height: | Size: 30 KiB |
BIN
public/images/logo128.png
Normal file
After Width: | Height: | Size: 11 KiB |
BIN
public/images/logo16.png
Normal file
After Width: | Height: | Size: 586 B |
BIN
public/images/logo19.png
Normal file
After Width: | Height: | Size: 713 B |
BIN
public/images/logo192.png
Normal file
After Width: | Height: | Size: 18 KiB |
BIN
public/images/logo32.png
Normal file
After Width: | Height: | Size: 1.3 KiB |
BIN
public/images/logo38.png
Normal file
After Width: | Height: | Size: 1.7 KiB |
BIN
public/images/logo48.png
Normal file
After Width: | Height: | Size: 2.4 KiB |
BIN
public/images/logo512.png
Normal file
After Width: | Height: | Size: 68 KiB |
BIN
public/images/logo64.png
Normal file
After Width: | Height: | Size: 4 KiB |
BIN
public/images/screenshot-1.png
Normal file
After Width: | Height: | Size: 207 KiB |
BIN
public/images/screenshot-2.png
Normal file
After Width: | Height: | Size: 163 KiB |
20
public/index.html
Normal file
|
@ -0,0 +1,20 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<link rel="icon" href="%PUBLIC_URL%/favicon.ico" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||
<meta name="theme-color" content="#000000" />
|
||||
<meta
|
||||
name="description"
|
||||
content="A WebSocket client for designed for testing and debugging WebSocket connections."
|
||||
/>
|
||||
<link rel="apple-touch-icon" href="%PUBLIC_URL%/logo192.png" />
|
||||
<link rel="manifest" href="%PUBLIC_URL%/manifest.json" />
|
||||
<title>WebSocket King client: A testing and debugging tool for WebSockets</title>
|
||||
</head>
|
||||
<body>
|
||||
<noscript>You need to enable JavaScript to run this app. 😞</noscript>
|
||||
<div id="root"></div>
|
||||
</body>
|
||||
</html>
|
25
public/manifest.json
Normal file
|
@ -0,0 +1,25 @@
|
|||
{
|
||||
"short_name": "WebSocket King",
|
||||
"name": "WebSocket King client: A testing and debugging tool for WebSockets",
|
||||
"icons": [
|
||||
{
|
||||
"src": "favicon.ico",
|
||||
"sizes": "64x64 32x32 24x24 16x16",
|
||||
"type": "image/x-icon"
|
||||
},
|
||||
{
|
||||
"src": "images/logo192.png",
|
||||
"type": "image/png",
|
||||
"sizes": "192x192"
|
||||
},
|
||||
{
|
||||
"src": "images/logo512.png",
|
||||
"type": "image/png",
|
||||
"sizes": "512x512"
|
||||
}
|
||||
],
|
||||
"start_url": ".",
|
||||
"display": "standalone",
|
||||
"theme_color": "#000000",
|
||||
"background_color": "#ffffff"
|
||||
}
|
1
public/robots.txt
Normal file
|
@ -0,0 +1 @@
|
|||
User-agent: *
|