mirror of
https://github.com/GoogleChrome/chrome-extensions-samples.git
synced 2026-03-28 13:39:44 +07:00
25 lines
420 B
HTML
Executable File
25 lines
420 B
HTML
Executable File
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
|
|
<script src="scripts/window.js"></script>
|
|
<link rel="stylesheet" href="styles/window.css">
|
|
</head>
|
|
<body class="copycat">
|
|
|
|
<h1>I'm a copycat</h1>
|
|
|
|
<div id="stats">
|
|
<p>
|
|
Position: (<span id="screenX"></span>, <span id="screenY"></span>)
|
|
</p>
|
|
|
|
<p>
|
|
Size: (<span id="innerWidth"></span>, <span id="innerHeight"></span>)
|
|
</p>
|
|
</div>
|
|
|
|
</body>
|
|
</html>
|