mirror of
https://github.com/GoogleChrome/chrome-extensions-samples.git
synced 2026-03-27 13:29:34 +07:00
14 lines
368 B
HTML
14 lines
368 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>Analytics Demo Popup</title>
|
|
<script src="./popup.js" type="module"></script>
|
|
</head>
|
|
<body>
|
|
<h1>Analytics Demo</h1>
|
|
<p><button id="myButton">Click to fire event</button></p>
|
|
</body>
|
|
</html>
|