-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpopup.html
84 lines (79 loc) · 1.55 KB
/
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
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
72
73
74
75
76
77
78
79
80
81
82
83
84
<html>
<head>
<title>Navigation Shortcuts</title>
<link rel="stylesheet" type="text/css" href="bootstrap.min.css" />
<style>
BODY {
white-space: nowrap;
padding: 0 2em 2em
}
</style>
</head>
<body>
<h3>Navigation Shortcuts</h3>
<p>Allows you to navigate to the next, previous, or top page using simple keyboard shortcuts:</p>
<table class="table table-striped table-bordered" style="font-size: 95%">
<tr>
<th>Shortcut Key</th>
<th>Action</th>
</tr>
<tr>
<td>Space Bar</td>
<td>next page (when scrolled to the bottom)</td>
</tr>
<tr>
<td>Shift + Space Bar</td>
<td>previous page (when scrolled to the top)</td>
</tr>
<tr>
<th colspan="2">Windows Specific</th>
</tr>
<tr>
<td>Ctrl + Right</td>
<td>next page</td>
</tr>
<tr>
<td>Ctrl + Left</td>
<td>previous page</td>
</tr>
<tr>
<td>Ctrl + Up</td>
<td>section page</td>
</tr>
<tr>
<td>Ctrl + Shift + Up</td>
<td>top page</td>
</tr>
<tr>
<th colspan="2">Mac Specific</th>
</tr>
<tr>
<td>Option + Right</td>
<td>next page</td>
</tr>
<tr>
<td>Option + Left</td>
<td>previous page</td>
</tr>
<tr>
<td>Option + Up</td>
<td>section page</td>
</tr>
<tr>
<td>Option + Shift + Up</td>
<td>top page</td>
</tr>
</table>
<h4>Languages Supported</h4>
<ul>
<li>English</li>
<li>German</li>
<li>Russian</li>
<li>Ukrainian</li>
</ul>
<h4>Disabled On</h4>
<ul>
<li><code>docs.google.com</code></li>
</ul>
</body>
</html>