-
Notifications
You must be signed in to change notification settings - Fork 3
/
welcome.html
111 lines (106 loc) · 3.76 KB
/
welcome.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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
<!DOCTYPE html>
<html lang="en">
<head>
<title>Thank you for installing!</title>
<script src="tutorial/welcome.js" defer></script>
<link rel="stylesheet" href="tutorial/welcome.css">
<meta charset="utf-8" />
</head>
<body>
<header>
<h1>Thank you for installing <i>Mouse Pinch-to-Zoom</i>!</h1>
</header>
<div id="howto">
<h2><span class="emoji">📚</span> How to use</h2>
<p>
1. Go to
<a href="https://www.google.com/search?q=cute+kittens&tbm=isch" target="_blank" rel="noopener noreferrer">
<button>your favorite website</button>
</a>.
</p>
<p>
2. Hold the
<span class="key">Alt</span>
key and scroll the
<span class="mouse"><img src="tutorial/wheel.png">mouse wheel</span> up to zoom in.
</p>
<p>
3. Click or hold the <span class="mouse"><img src="tutorial/wheel.png">mouse wheel</span> and move the cursor to pan around the page.
</p>
<p>
Go to
<button id="ext-options">options</button>
to customize the experience - you can change the activation mode, speed and smoothness.
You can always find the options in the
<img src="tutorial/ext-light.png" class="lightmode">
<img src="tutorial/ext-dark.png" class="darkmode">
<b> extensions menu </b>
in the top right corner of your browser.
</p>
</div>
<div id="attention">
<h2><span class="emoji">⚠️</span> Attention!</h2>
<div>
<p>
For security reasons, this extension cannot work on
</p>
<ul>
<li>extension pages <b>(including this one)</b></li>
<li>the Chrome Web Store</li>
<li>the browser's settings pages</li>
</ul>
</div>
<div>
<p>
By default it also does not work in
</p>
<ul>
<li>incognito mode</li>
<li>local files</li>
</ul>
<p>
This can be changed by going to the <button id="chrome-settings">extension settings</button> and
enabling the appropriate options
</p>
</div>
</div>
<div id="support">
<h2><span class="emoji">🤝</span> Support</h2>
<p>
If you're enjoying the extension, please consider supporting my work on this and other products by
<a href="https://www.buymeacoffee.com/nizioleque" target="_blank" rel="noopener noreferrer">
<button>
<span class="emoji">🍺</span> Buying me a beer
</button>
</a>
<a href="https://chrome.google.com/webstore/detail/mouse-pinch-to-zoom/pffiadlahfhoniddbipeiiohjnlongfi/reviews"
target="_blank" rel="noopener noreferrer">
<button>
<span class="emoji">⭐</span> Rating the extension
</button>
</a>
And if you experience any issues, please
<a target="_blank" href="
mailto: [email protected]
?subject=Mouse Pinch-to-Zoom bug report
&body=PLEASE FILL IN THIS EMAIL TO SEND A BUG REPORT%0D%0A
%0D%0A
PROBLEM:%0D%0A
[describe the problem]%0D%0A
%0D%0A
AFFECTED SITES:%0D%0A
[include links to affected sites]%0D%0A
%0D%0A
STEPS TO REPRODUCE:%0D%0A
[describe the steps to reproduce the problem]%0D%0A
%0D%0A
Your feedback will be used to improve the extension. Thank you!
">
<button class="btn-report">
<span class="emoji">📧</span> Send me a bug report
</button>
</a>
</p>
</div>
</body>
</html>