mirror of
https://github.com/GoogleChrome/chrome-extensions-samples.git
synced 2026-03-31 14:09:58 +07:00
18 lines
538 B
HTML
18 lines
538 B
HTML
<html>
|
|
<head>
|
|
<title>Echo!</title>
|
|
<script src="networking.js"></script>
|
|
<script src="raf.js"></script>
|
|
<script src="mco.js"></script>
|
|
<script src="demo.js"></script>
|
|
</head>
|
|
<body>
|
|
<div style="position:absolute;z-index:8;top:10px;left:10px;">
|
|
<input type="text" id="address" value="127.0.0.1:3007"/>
|
|
<input type="button" id="connect" value="Connect" />
|
|
<br>
|
|
Instructions: now run <code>node dropping-server.js</code> in the <code>server</code> directory
|
|
</div>
|
|
</body>
|
|
</html>
|