mirror of
https://github.com/moonlight-stream/moonlight-chrome.git
synced 2025-08-17 16:46:31 +00:00
29 lines
961 B
HTML
29 lines
961 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta http-equiv="Pragma" content="no-cache">
|
|
<meta http-equiv="Expires" content="-1">
|
|
<title>Moonlight</title>
|
|
<script src="common.js"></script>
|
|
<script src="index.js"></script>
|
|
</head>
|
|
<body data-name="moonlight-chrome" data-width="500" data-height="500" data-tools="pnacl" data-configs="Debug Release" data-path="{tc}/{config}">
|
|
|
|
<h1>Moonlight</h1>
|
|
<h2>Status: <code id="statusField">NO-STATUS</code></h2>
|
|
<p>Moonlight Streaming extension for Chrome</p>
|
|
|
|
<p>Click the buttons. Click them.</p>
|
|
<button id="startButton">Start</button>
|
|
<button id="stopButton">Stop</button>
|
|
|
|
<p>Enter the IP or Hostname of the GFE streaming computer, then hit enter:</p>
|
|
<input type="text" size="15" id="GFEHostIPField" value="127.0.0.1">
|
|
|
|
<!-- The NaCl plugin will be embedded inside the element with id "listener".
|
|
See common.js. -->
|
|
<div id="listener"></div>
|
|
</body>
|
|
</html>
|
|
|