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>
18 lines
294 B
HTML
18 lines
294 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<style>
|
|
button {
|
|
height: 30px;
|
|
width: 30px;
|
|
outline: none;
|
|
background-color: #3aa757;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<button id="changeColor"></button>
|
|
<script src="popup.js"></script>
|
|
</body>
|
|
</html>
|