-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
100 lines (96 loc) · 3.52 KB
/
Copy pathindex.html
File metadata and controls
100 lines (96 loc) · 3.52 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>ShareX custom uploader — dropimg.io</title>
<meta
name="description"
content="Anonymous ShareX custom uploader for dropimg.io. Double-click dropimg.sxcu, capture, get a temporary URL."
/>
<link rel="canonical" href="https://dropimg.io/sharex" />
<meta name="robots" content="noindex, follow" />
<style>
:root {
--bg: #f7f7fb;
--text: #12131c;
--soft: #4b4f62;
--brand: #3b4fe8;
--line: #d8dbe8;
}
* { box-sizing: border-box; }
body {
margin: 0;
font: 16px/1.5 ui-sans-serif, system-ui, -apple-system, Segoe UI, sans-serif;
color: var(--text);
background: var(--bg);
}
main {
max-width: 40rem;
margin: 0 auto;
padding: 3rem 1.25rem 4rem;
}
.kicker {
color: var(--brand);
font-size: 0.8rem;
letter-spacing: 0.08em;
text-transform: uppercase;
}
h1 { font-size: 1.85rem; line-height: 1.2; margin: 0.35rem 0 0.6rem; }
.lede { color: var(--soft); margin: 0 0 1.5rem; }
.actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 2rem; }
a.btn {
display: inline-block;
padding: 0.7rem 1rem;
border-radius: 0.65rem;
text-decoration: none;
font-weight: 600;
}
.primary { background: var(--brand); color: #fff; }
.secondary { background: #fff; color: var(--text); border: 1px solid var(--line); }
h2 { font-size: 1.1rem; margin: 1.75rem 0 0.5rem; }
ol { padding-left: 1.2rem; }
li { margin: 0.4rem 0; }
table { width: 100%; border-collapse: collapse; font-size: 0.95rem; }
th, td { text-align: left; padding: 0.45rem 0.35rem; border-bottom: 1px solid var(--line); vertical-align: top; }
footer { margin-top: 2.5rem; color: var(--soft); font-size: 0.9rem; }
</style>
</head>
<body>
<main>
<p class="kicker">ShareX custom uploader</p>
<h1>dropimg.io for ShareX</h1>
<p class="lede">
Double-click the .sxcu. Capture as usual. Get a temporary URL.
No account required.
</p>
<div class="actions">
<a class="btn primary" href="./dropimg.sxcu" download="dropimg.sxcu">Download dropimg.sxcu</a>
<a class="btn secondary" href="https://dropimg.io/sharex">Full setup on dropimg.io</a>
</div>
<h2>One-click install</h2>
<ol>
<li>Download <code>dropimg.sxcu</code> and double-click it.</li>
<li>Set dropimg.io as the image uploader destination.</li>
<li>Capture. The share URL is copied.</li>
</ol>
<h2>Anonymous vs account</h2>
<table>
<tr><th></th><th>Anonymous</th><th>Account</th></tr>
<tr><td>File</td><td>dropimg.sxcu (this repo)</td><td>from Integrations</td></tr>
<tr><td>Sign-in</td><td>No</td><td>Yes</td></tr>
<tr><td>My drops</td><td>No</td><td>Yes</td></tr>
<tr><td>Default expiry</td><td>7 days</td><td>Plan default</td></tr>
</table>
<h2>Privacy</h2>
<p>
Temporary host, not an archive. Public config sends <code>expiry=7d</code>
(or <code>1h</code> / <code>24h</code>). See
<a href="https://dropimg.io/privacy">dropimg.io/privacy</a>.
</p>
<footer>
Canonical page: <a href="https://dropimg.io/sharex">dropimg.io/sharex</a>
</footer>
</main>
</body>
</html>