mirror of
https://github.com/GoogleChrome/chrome-extensions-samples.git
synced 2026-04-04 14:49:44 +07:00
21 lines
573 B
HTML
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>
|