mirror of
https://github.com/GoogleChrome/chrome-extensions-samples.git
synced 2026-04-01 14:20:01 +07:00
26 lines
688 B
HTML
26 lines
688 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>Chrome Remote Comando</title>
|
|
<link href="styles/main.css" rel="stylesheet">
|
|
</head>
|
|
<body>
|
|
<section id="server">
|
|
<h1>Chrome Remote Commando</h1>
|
|
<div class="hide-when-connected">Serve at
|
|
<select id="addresses"><option>127.0.0.1</option></select>:
|
|
<input type="number" id="serverPort" value="8888"></input>
|
|
<button id="serverStart">Start!</button>
|
|
</div>
|
|
<div class="hide-when-not-connected">
|
|
<p>Serving at <span class="serving-at"></span>
|
|
<button id="serverStop">Stop!</button></p>
|
|
<div id="serverlog"></div>
|
|
</div>
|
|
</section>
|
|
<script src="server.js"></script>
|
|
</body>
|
|
</html>
|
|
|