-
Notifications
You must be signed in to change notification settings - Fork 0
/
popup.html
25 lines (25 loc) · 863 Bytes
/
popup.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" href="/icons/logo.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Chrome Extensioin + Vanilla + TS + Vite App - Popup</title>
</head>
<body>
<div id="app">
<main id="mainContent">
<h3>Select theme</h3>
<select id="theme-select"></select>
<div class="options-link-wrapper"></div>
<a href="https://www.buymeacoffee.com/jserwatka" target="_blank"
><img
src="https://cdn.buymeacoffee.com/buttons/v2/default-yellow.png"
alt="Buy Me A Coffee"
style="height: 40px !important; width: auto !important; margin-top: 20px"
/></a>
</main>
</div>
<script type="module" src="/src/popup/index.ts"></script>
</body>
</html>