mirror of
https://github.com/GoogleChrome/chrome-extensions-samples.git
synced 2026-04-01 14:20:01 +07:00
38 lines
615 B
HTML
38 lines
615 B
HTML
<html>
|
|
|
|
<head>
|
|
|
|
<title>Frameless Window</title>
|
|
|
|
<link rel="stylesheet" type="text/css" href="style.css" />
|
|
<script src="titlebar.js"></script>
|
|
<script src="frameless_window.js"></script>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<div id="content">
|
|
|
|
<div id="inner-content">
|
|
|
|
Select the titlebar to enable:<br/>
|
|
<input type="checkbox" id="top-box">Top Titlebar
|
|
<br/>
|
|
<input type="checkbox" id="bottom-box">Bottom Titlebar
|
|
<br/>
|
|
<input type="checkbox" id="left-box">Left Titlebar
|
|
<br/>
|
|
<input type="checkbox" id="right-box">Right Titlebar
|
|
<br/>
|
|
<br/>
|
|
<button id="close-window-button">Close Window</button>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</body>
|
|
|
|
</html>
|