mirror of
https://github.com/GoogleChrome/chrome-extensions-samples.git
synced 2026-03-28 13:39:44 +07:00
29 lines
647 B
HTML
29 lines
647 B
HTML
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<title>Analytics sample app</title>
|
|
</head>
|
|
<body>
|
|
<div>
|
|
<button id="chocolate">Chocolate</button>
|
|
<button id="vanilla">Vanilla</button>
|
|
|
|
<div id=out></div>
|
|
</div>
|
|
<div id="settings">
|
|
<h1>Settings</h1>
|
|
<div id="settings-loading">
|
|
Loading settings...
|
|
</div>
|
|
<div id="settings-loaded" hidden>
|
|
<label>
|
|
<input id="analytics" type="checkbox" />
|
|
Send anonymous usage data.
|
|
</label>
|
|
</div>
|
|
</div>
|
|
<script src="google-analytics-bundle.js"></script>
|
|
<script src="main.js"></script>
|
|
</body>
|
|
</html>
|