mirror of
https://github.com/GoogleChrome/chrome-extensions-samples.git
synced 2026-03-27 13:29:34 +07:00
14 lines
276 B
HTML
14 lines
276 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>Singleton Window</title>
|
|
|
|
<link href="styles/main.css" rel="stylesheet">
|
|
</head>
|
|
<body>
|
|
<p>I was created at <span id="created-at"></span>.</p>
|
|
<script src="singleton.js"></script>
|
|
</body>
|
|
</html>
|