Files
chrome-extensions-samples/samples/messaging/app2/index.html
2014-09-02 18:06:16 +02:00

21 lines
573 B
HTML

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<link href="main.css" rel="stylesheet">
</head>
<body>
<h3>Waiting for messages</h3>
<label>my Application ID is <input id="appid" type="text" readonly></input></label>
<div>
<label for="sendText">Send message:</label>
<input id="sendText" type="text"></input>
<label for="sendId">to application ID </label>
<input id="sendId" type="text"></input>
<button id="send">Send</button>
</div>
<div id="log"></div>
<script src="index.js"></script>
</body>
</html>