-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
welcome.html
63 lines (58 loc) · 3.74 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="icon" type="image/png" href="img/icon_x32.png">
<title>Share to Mastodon</title>
<link href="css/bootstrap.css" rel="stylesheet">
</head>
<body>
<!-- Header -->
<div class="container-fluid bg-light mb-5">
<div class="container bg-light py-5">
<div class="row">
<div class="col-9">
<h1 class="display-5 fw-bold">Share to Mastodon <span class="version"></span> is now installed!</h1>
<p>This update improves server icon support and fixes some bugs. Check out the <a href="https://github.com/corbindavenport/share-to-mastodon/releases/latest" target="_blank">full changelog</a> for more details.</p>
</div>
</div>
</div>
</div>
<!-- Main container -->
<div class="container">
<!-- Info and donation -->
<div class="row">
<div class="col-md-8">
<h2>How to use Share to Mastodon</h2>
<p>You can click the Mastodon icon in your browser's toolbar to share the current tab in a Mastodon post. You can also right-click anywhere on the page to share a link to the current tab. If you right-click a link, Share to Mastodon will use that link instead of the current page. If you select some text, then right-click and share to a Mastodon server, the text snippet will be included with the link in the post.</p>
<p>Share to Mastodon can save multiple servers in the settings, and give you a list to choose from each time you want to share. The list of servers can be updated from <a href="settings.html" target="_blank">the settings</a>. You can also configure a keyboard shortcut to open the share panel.</p>
<p>Share to Mastodon also works with servers running some social media platforms besides Mastodon, such as <a href="https://misskey-hub.net/en/" target="_blank">Misskey</a>. Try adding the server and see what happens! You can also add the <a href="https://elk.zone/" target="_blank">Elk web client</a> if you use that.</p>
</div>
<div class="col-md-4">
<h2>Donate</h2>
<p>If you find Share to Mastodon useful, please donate to support continued development. It would mean a lot!</p>
<a href="https://www.patreon.com/corbindavenport" target="_blank">
<button type="button" class="btn btn-success w-100 mb-3">Support via Patreon</button>
</a>
<a href="https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=4SZVSMJKDS35J&lc=US&item_name=Share%20to%20Mastodon%20Donation¤cy_code=USD&bn=PP%2dDonationsBF%3abtn_donateCC_LG%2egif%3aNonHosted" target="_blank">
<button type="button" class="btn btn-success w-100 mb-3">Donate via PayPal</button>
</a>
<a href="https://cash.app/$corbdav" target="_blank">
<button type="button" class="btn btn-success w-100 mb-3">Donate via Cash App</button>
</a>
<p>Share to Mastodon is developed by <a href="https://corbin.io/?utm_source=Share%20to%20Mastodon%20Extension">Corbin Davenport</a>.</p>
<h2>Need help?</h2>
<p>If something isn't working, or if you just want to chat with other Share to Mastodon users, <a href="https://github.com/corbindavenport/share-to-mastodon/issues" target="_blank">create an issue on GitHub</a> or <a href="https://discord.com/invite/59wfy5cNHw" target="_blank">join the Discord server</a>.</p>
</div>
</div>
<!-- Footer -->
<div class="row">
<div class="bg-light rounded-3 pt-3 pb-3 mt-5 mb-5">
Share to Mastodon uses code from <a href="https://getbootstrap.com/" target="_blank">Bootstrap</a>. You can find the source code <a href="https://github.com/corbindavenport/share-to-mastodon" target="_blank">on GitHub</a>, under the GPL license.</div>
</div>
</div>
<script src="js/welcome.js"></script>
</body>
</html>