mirror of
https://github.com/GoogleChrome/chrome-extensions-samples.git
synced 2026-03-27 13:29:34 +07:00
This PR moves the script tag inside of the body tag. Related https://github.com/GoogleChrome/developer.chrome.com/pull/2696/
15 lines
261 B
HTML
15 lines
261 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<link rel="stylesheet" href="button.css">
|
|
</head>
|
|
<body>
|
|
<div id="buttonDiv">
|
|
</div>
|
|
<div>
|
|
<p>Choose a different background color!</p>
|
|
</div>
|
|
<script src="options.js"></script>
|
|
</body>
|
|
</html>
|