mirror of
https://github.com/GoogleChrome/chrome-extensions-samples.git
synced 2026-04-04 14:49:44 +07:00
25 lines
584 B
HTML
25 lines
584 B
HTML
<!--
|
|
- Copyright (c) 2012 The Chromium Authors. All rights reserved.
|
|
- Use of this source code is governed by a BSD-style license that can be
|
|
- found in the LICENSE file.
|
|
-->
|
|
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<script src="mainpage.js"></script>
|
|
<link href="styles/main.css" rel="stylesheet">
|
|
</head>
|
|
<body>
|
|
|
|
<div id="buttons">
|
|
<button id="sendMessage">Click me</button>
|
|
<button id="reset">Reset counter</button>
|
|
</div>
|
|
|
|
<div id="result"></div>
|
|
|
|
<iframe id="theFrame" src="sandbox.html" style="display: none;"></iframe>
|
|
|
|
</body>
|
|
</html>
|