-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathoptions.html
More file actions
49 lines (43 loc) · 2.13 KB
/
options.html
File metadata and controls
49 lines (43 loc) · 2.13 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
<!--
A Chrome and Firefox extension that hides the cursor.
Copyright (C) 2023 Alex Leute
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.
-->
<!DOCTYPE html>
<html lang="en">
<head>
<title>Hide Cursor extension</title>
<link rel="stylesheet" href="options.css">
<link rel="apple-touch-icon" sizes="180x180" href="images/favicons/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="images/favicons//favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="images/favicons//favicon-16x16.png">
<link rel="manifest" href="images/favicons/site.webmanifest">
</head>
<body>
Hide Cursor Copyright (C) 2023 Alex Leute<br>
This program comes with ABSOLUTELY NO WARRANTY.<br>
This is free software, and you are welcome to redistribute it<br>
under certain conditions. Click <a href="LICENSE">here</a> for details.<br>
<br>
The default shortcut is <kbd>Ctrl</kbd> + <kbd>Shift</kbd> + <kbd>H</kbd>, but you can change the shortcut in
Extensions (<img src="images/extension_chrome.svg" alt="">) → Manage extensions → Menu (<img src="images/menu.svg" alt="">) → Keyboard shortcuts.
<br>
<hr>
<footer>
Mouse icon modified from the <a href="http://www.gnome.org" target="_blank">GNOME Project</a> under
<a href="images/lgpl.txt"
target="_blank">LGPL3</a><br>
Material icons under <a href="images/apache.txt">Apache License Version 2.0</a><br>
<a href="https://github.com/alex391/hide-cursor" target="_blank">Visit the GitHub!</a>
</footer>
</body>
</html>