mirror of
https://github.com/GoogleChrome/chrome-extensions-samples.git
synced 2026-03-28 13:39:44 +07:00
* First draft * Update popup and options * Update comments * Update functional-samples/tutorial.broken-color/service-worker.js Co-authored-by: Sebastian Benz <sebastian.benz@gmail.com> * Add readme * Update readme --------- Co-authored-by: Sebastian Benz <sebastian.benz@gmail.com>
21 lines
346 B
HTML
21 lines
346 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>
|
|
<script src="options.js"></script>
|
|
</body>
|
|
</html>
|