forked from nisargkolhe/arcify
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathonboarding.html
More file actions
356 lines (326 loc) · 12.9 KB
/
onboarding.html
File metadata and controls
356 lines (326 loc) · 12.9 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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Arcify: Arc like vertical tab spaces</title>
<link rel="icon" href="assets/icon.png" type="image/png">
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
background-color: var(--bg-color);
min-height: 100vh;
display: flex;
align-items: center;
padding: 2rem;
overflow-x: hidden;
}
:root {
--bg-color: #f5f7fa;
}
.container {
width: 100%;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
}
.intro {
width: auto;
object-fit: contain;
margin-bottom: 1rem;
max-width: 50vh;
}
.screenshots {
width: 100%;
display: flex;
gap: 2rem;
justify-content: center;
align-items: center;
padding: 1rem;
}
.screenshot {
max-height: 80vh;
width: auto;
object-fit: contain;
border-radius: 16px;
transition: transform 0.3s ease;
}
.annotation:hover {
transform: scale(1.02);
}
.changelog-container {
max-width: 800px;
margin: 4rem auto;
padding: 0 2rem;
}
.changelog-container h2 {
text-align: center;
margin-bottom: 2rem;
color: #cc4444;
font-size: 2rem;
font-weight: 600;
}
.changelog-list {
display: flex;
flex-direction: column;
gap: 1rem;
}
.changelog-item {
background: white;
border-radius: 12px;
padding: 1.5rem;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
transition: transform 0.2s ease;
}
.changelog-version {
font-weight: 600;
color: #cc4444;
margin-bottom: 1rem;
font-size: 1.1rem;
}
.changelog-changes {
color: #666;
line-height: 1.6;
padding-left: 1.5rem;
}
.changelog-changes li {
margin-bottom: 0.5rem;
}
.changelog-changes li:last-child {
margin-bottom: 0;
}
.faq-container {
max-width: 800px;
margin: 4rem auto;
padding: 0 2rem;
}
.faq-container h2 {
text-align: center;
margin-bottom: 2rem;
color: #cc4444;
font-size: 2rem;
font-weight: 600;
}
.faq-list {
display: flex;
flex-direction: column;
gap: 1rem;
}
.faq-item {
background: white;
border-radius: 12px;
padding: 1.5rem;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
transition: transform 0.2s ease;
}
.faq-item:hover {
transform: translateY(-2px);
}
.faq-question {
font-weight: 600;
color: #cc4444;
margin-bottom: 1rem;
font-size: 1.1rem;
}
.faq-answer {
color: #666;
line-height: 1.6;
}
.faq-answer ol {
padding-left: 1.5rem;
margin: 0.5rem 0;
line-height: 1.6;
}
.faq-answer li {
margin-bottom: 0.5rem;
}
.faq-answer li:last-child {
margin-bottom: 0;
}
.roadmap-container {
max-width: 800px;
margin: 4rem auto;
padding: 0 2rem;
}
.roadmap-container h2 {
text-align: center;
margin-bottom: 2rem;
color: #cc4444;
font-size: 2rem;
font-weight: 600;
}
.roadmap {
display: grid;
gap: 2rem;
position: relative;
}
.roadmap-item {
background: white;
border-radius: 12px;
padding: 1.5rem;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
transition: transform 0.3s ease, box-shadow 0.3s ease;
position: relative;
}
.roadmap-item:hover {
transform: translateY(-4px);
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.roadmap-content h3 {
color: #cc4444;
margin-bottom: 0.5rem;
font-size: 1.2rem;
}
.roadmap-content p {
color: #666;
line-height: 1.5;
margin: 0;
}
</style>
</head>
<body>
<div class="container" style="margin-bottom: 2rem;">
<img src="assets/intro.png" alt="Arc-Style Sidebar Introduction" class="intro">
<div class="screenshots">
<img src="assets/left.png" alt="Arc-Style Sidebar Overview" class="screenshot annotation">
<img src="assets/extension.gif" alt="Spaces and Pinned Tabs" class="screenshot">
<img src="assets/right.png" alt="Smart Features" class="screenshot annotation">
</div>
<div class="changelog-container">
<h2>Changelog</h2>
<div class="changelog-list">
<div class="changelog-item">
<div class="changelog-version">Version 2.2</div>
<ul class="changelog-changes">
<li>Fixed tabs always switching when clicking on links.</li>
<li>Other minor bug fixes and improvements.</li>
</ul>
</div>
<div class="changelog-item">
<div class="changelog-version">Version 2.1</div>
<ul class="changelog-changes">
<li>Keyboard shortcut to quick pin/unpin tabs! This needs to be manually set in <a href="chrome://extensions/shortcuts">Chrome keyboard extension shortcuts settings</a></li>
<li>Tab groups in Chrome nav bar now collapse and expand based on the active space.</li>
<li>Fixed tab switching when toggling extension.</li>
<li>Spaces now persist last tab opened, so switching between spaces will go to last tab used in that space.</li>
<li>Updated tab insertion logic. Like Arc, tabs opened through link in an existing tab will be inserted below that tab, while new tabs are at the top.</li>
</ul>
</div>
<div class="changelog-item">
<div class="changelog-version">Version 2.0</div>
<ul class="changelog-changes">
<li><b>Space customization is here!</b> Personalize your spaces with primary colors from the Chrome tab groups.</li>
<li>Space switcher can now be scrolled in any scroll direction, and the UI is improved to emphasize active space.</li>
<li>Fixed drag and drop behavior for spaces</li>
<li>Improved multi window support</li>
</ul>
</div>
<div class="changelog-item">
<div class="changelog-version">Version 1.5</div>
<ul class="changelog-changes">
<li>New tabs are now added to the top of the space</li>
<li>Middle click now closes tabs (thanks to @alexlabbane!)</li>
<li>Favicons now load for all websites (thanks to @yashsriv!)</li>
<li>Fixed PWAs and tabs in other windows merging into active window (again)</li>
<li>Fixed pinned tabs within folders not deleting</li>
</ul>
</div>
<div class="changelog-item">
<div class="changelog-version">Version 1.1</div>
<ul class="changelog-changes">
<li>Fixed PWAs and tabs in other windows merging into active window</li>
<li>Side panel now toggles open and close with the keyboard shortcut</li>
<li>Minor UI fixes</li>
</ul>
</div>
</div>
</div>
<div class="faq-container">
<h2>FAQs</h2>
<div class="faq-list">
<div class="faq-item">
<div class="faq-question">How do I set my side panel to be on the left side?</div>
<div class="faq-answer">
<ol>
<li>Go to Chrome Settings (⋮ menu > Settings)</li>
<li>Click on "Appearance" in the sidebar</li>
<li>Scroll down to "Side panel position"</li>
<li>Select "Show on left"</li>
</ol>
</div>
</div>
<div class="faq-item">
<div class="faq-question">Can I change shortcut to Cmd+S instead?</div>
<div class="faq-answer">
<ol>
<li>Go to Chrome Settings (⋮ menu > Settings)</li>
<li>Click on "Extensions" in the sidebar</li>
<li>Click on "Keyboard shortcuts" at the bottom</li>
<li>Find "Arcify" and customize the shortcut</li>
</ol>
</div>
</div>
<div class="faq-item">
<div class="faq-question">Can I move tabs between spaces?</div>
<div class="faq-answer">
Currently, you can move tabs between spaces by using Chrome's tab groups feature. Simply drag a tab to a different tab group that corresponds to your desired space and toggle the extension. Native functionality to move tabs directly within the extension is coming soon!
</div>
</div>
<div class="faq-item">
<div class="faq-question">Where can I see my stored pinned tabs?</div>
<div class="faq-answer">
Your pinned tabs are stored in your Chrome bookmarks under the "Arcify" folder. Each space has its own subfolder containing its pinned tabs for easy access and organization.
</div>
</div>
<div class="faq-item">
<div class="faq-question">Are my spaces and pinned tabs synced across devices?</div>
<div class="faq-answer">
Yes! Since your spaces and pinned tabs are stored in Chrome bookmarks, they automatically sync across all your devices where you're signed into Chrome with the same account.
</div>
</div>
</div>
</div>
<div class="roadmap-container">
<h2>What's Next</h2>
<div class="roadmap">
<div class="roadmap-item">
<div class="roadmap-content">
<h3>Add styling customization</h3>
<p>Personalize your sidebar with custom colors, themes, and visual preferences</p>
</div>
</div>
<div class="roadmap-item">
<div class="roadmap-content">
<h3>Move tabs around spaces</h3>
<p>Seamlessly drag and drop tabs between different spaces</p>
</div>
</div>
<div class="roadmap-item">
<div class="roadmap-content">
<h3>Ability to rename tabs</h3>
<p>Customize tab names for better organization</p>
</div>
</div>
<div class="roadmap-item">
<div class="roadmap-content">
<h3>Auto close tabs</h3>
<p>Smart tab management to automatically close inactive tabs</p>
</div>
</div>
<div class="roadmap-item">
<div class="roadmap-content">
<h3>Missing feature X</h3>
<p>Something which is still missing? Send feedback to contact@nisarg.me and I'll try to add it to the roadmap. :)</p>
</div>
</div>
</div>
</div>
</div>
</body>
</html>