-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest.html
More file actions
71 lines (62 loc) · 2.36 KB
/
test.html
File metadata and controls
71 lines (62 loc) · 2.36 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
<!DOCTYPE html>
<html>
<head>
<title>Glance UI Test Page</title>
<style>
body {
font-family: Arial, sans-serif;
max-width: 800px;
margin: 0 auto;
padding: 20px;
}
.test-links {
margin: 20px 0;
padding: 20px;
border: 1px solid #ccc;
border-radius: 5px;
}
.test-link {
display: block;
margin: 10px 0;
padding: 10px;
background-color: #f0f8ff;
text-decoration: none;
color: #0066cc;
border: 1px solid #0066cc;
border-radius: 3px;
}
.test-link:hover {
background-color: #e6f2ff;
}
</style>
</head>
<body>
<h1>Glance UI Extension Test Page</h1>
<p>This page is designed to test the Glance UI extension functionality. With the extension installed, try pressing <strong>Alt + Click</strong> on any of the links below to open them in a pop-up modal.</p>
<div class="test-links">
<h2>Test Links</h2>
<a href="https://www.google.com" class="test-link">Google</a>
<a href="https://www.github.com" class="test-link">GitHub</a>
<a href="https://www.wikipedia.org" class="test-link">Wikipedia</a>
<a href="https://stackoverflow.com" class="test-link">Stack Overflow</a>
<a href="https://developer.mozilla.org" class="test-link">MDN Web Docs</a>
<a href="https://www.google.com" class="test-link" draggable="true">Google (Drag Me!)</a>
</div>
<div class="test-links">
<h2>Internal Links (for testing on local server)</h2>
<a href="./popup.html" class="test-link">Extension Popup Page</a>
<a href="./options.html" class="test-link">Extension Options Page</a>
</div>
<div class="notes">
<h2>Notes</h2>
<p>After installing the Glance UI extension:</p>
<ol>
<li>Visit this page</li>
<li>Hold down the Alt key and click on any link</li>
<li>The link should open in a pop-up modal instead of navigating away</li>
<li>Use the X button to close the modal or click outside the modal to close it</li>
<li>Use the arrow button to open the link in a new tab</li>
</ol>
</div>
</body>
</html>