-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathoptions.html
More file actions
28 lines (26 loc) · 803 Bytes
/
options.html
File metadata and controls
28 lines (26 loc) · 803 Bytes
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
26
27
28
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Extension Settings</title>
<link rel="stylesheet" href="options.css">
</head>
<body>
<main class="panel">
<h1>Extension Template</h1>
<label class="option">
<input type="checkbox" id="example-toggle">
<span>Example setting</span>
</label>
<p class="hint">This is a placeholder option stored in chrome.storage.sync.</p>
<section class="support">
<h2>Support</h2>
<p class="hint">Optional: add a donation link here.</p>
<a class="button" href="https://github.com/sponsors/bestlux" target="_blank" rel="noreferrer noopener">
Sponsor on GitHub
</a>
</section>
</main>
<script src="options.js"></script>
</body>
</html>