-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings.html
More file actions
53 lines (45 loc) · 1.72 KB
/
Copy pathsettings.html
File metadata and controls
53 lines (45 loc) · 1.72 KB
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<!DOCTYPE html>
<html>
<head>
<title>Extension Settings</title>
<link rel="stylesheet" type="text/css" href="sidebar.css">
<link rel="stylesheet" type="text/css" href="sidebar-options.css">
</head>
<body>
<div class="settings-content">
<h1>SEO Sidebar Settings</h1>
<div class="section">
<h2>Appearance</h2>
<label for="sidebarWidth">Sidebar Width (pixels):</label>
<input type="number" id="sidebarWidth" min="100" max="1000" step="10">
<br><br>
<label for="sidebarBgColor">Sidebar Background Color:</label>
<input type="color" id="sidebarBgColor">
</div>
<div class="section">
<h2>Links, Help and more</h2>
<p>
<h2>Important Information</h2>
<p>
I am not collecting any of your browsing data.
</p>
</p>
<ul>
<li>
<a href="https://github.com/chrishaensel/seo-sidebar" target="_blank">SEO Sidebar Project on GitHub</a> (feel free to send a pull request)
</li>
<li>
<a href="https://github.com/chrishaensel/seo-sidebar/issues" target="_blank">Issues on GitHub</a> - Send feature requests or bug reports
</li>
<li>
<a href="https://x.com/chaensel" target="_blank">Find me on Twitter / X</a> @chaensel
</li>
<li>
<a href="mailto:[email protected]?subject=SEO Sidebar Extension">Send me an email</a>
</li>
</ul>
</div>
</div>
<script src="settings.js"></script>
</body>
</html>