mirror of
https://github.com/yaklang/yaklang-chrome-extension.git
synced 2026-09-24 20:21:53 +08:00
13 lines
306 B
HTML
13 lines
306 B
HTML
<!-- popup.html -->
|
|
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>WebSocket Connector</title>
|
|
</head>
|
|
<body>
|
|
<p id="wsStatus"></p>
|
|
<input type="text" id="wsUrl" placeholder="Enter WebSocket URL">
|
|
<button id="connectBtn">Connect WebSocket</button>
|
|
<script src="popup.js"></script>
|
|
</body>
|
|
</html> |