mirror of
https://github.com/GoogleChrome/chrome-extensions-samples.git
synced 2026-04-02 14:29:37 +07:00
22 lines
349 B
HTML
22 lines
349 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<style>
|
|
button {
|
|
height: 30px;
|
|
width: 30px;
|
|
outline: none;
|
|
margin: 10px;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div id="buttonDiv">
|
|
</div>
|
|
<div>
|
|
<p>Choose a different background color!</p>
|
|
</div>
|
|
</body>
|
|
<script src="options.js"></script>
|
|
</html>
|