-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfaq.html
More file actions
968 lines (880 loc) · 58.7 KB
/
faq.html
File metadata and controls
968 lines (880 loc) · 58.7 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
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Frequently Asked Questions  NODUS | How to save, export and organize AI conversations</title>
<meta name="description" content="All your questions about NODUS answered: how to save conversations from ChatGPT, Claude, Gemini and more. Export, organize, privacy, plans and much more." />
<link rel="canonical" href="https://nodus-ai.app/faq" />
<style>
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
--bg: #0e1117;
--panel: #1a1f29;
--border: #2d3748;
--yellow: #facc15;
--text: #e2e8f0;
--sub: #94a3b8;
--muted: #475569;
--green: #10b981;
--radius: 10px;
}
html { scroll-behavior: smooth; font-size: 16px; }
body {
background: var(--bg);
color: var(--text);
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
line-height: 1.6;
}
a { color: var(--yellow); text-decoration: none; }
a:hover { text-decoration: underline; }
.container { max-width: 860px; margin: 0 auto; padding: 0 24px; }
.container-wide { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
/* ââ€â‚¬Ã¢â€â‚¬ NAV ââ€â‚¬Ã¢â€â‚¬ */
nav {
position: sticky; top: 0; z-index: 100;
background: rgba(14,17,23,0.95);
backdrop-filter: blur(10px);
border-bottom: 1px solid var(--border);
padding: 12px 0;
}
.nav-inner {
max-width: 1100px; margin: 0 auto; padding: 0 24px;
display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { font-size: 15px; font-weight: 900; color: var(--yellow); letter-spacing: -0.5px; }
.nav-back { font-size: 13px; color: var(--sub); display: flex; align-items: center; gap: 6px; }
.nav-back:hover { color: var(--text); text-decoration: none; }
.nav-cta {
background: var(--yellow); color: #0e1117;
font-size: 13px; font-weight: 800;
padding: 7px 18px; border-radius: 8px;
transition: opacity 0.2s;
}
.nav-cta:hover { opacity: 0.88; text-decoration: none; }
/* ââ€â‚¬Ã¢â€â‚¬ HERO ââ€â‚¬Ã¢â€â‚¬ */
.faq-hero {
padding: 64px 0 48px;
border-bottom: 1px solid var(--border);
}
.faq-hero-label {
font-size: 11px; font-weight: 700; letter-spacing: 3px;
text-transform: uppercase; color: var(--yellow); margin-bottom: 14px;
}
.faq-hero h1 {
font-size: clamp(28px, 4vw, 44px);
font-weight: 800; line-height: 1.15; margin-bottom: 16px;
}
.faq-hero p {
font-size: 17px; color: var(--sub); max-width: 560px; line-height: 1.7;
margin-bottom: 28px;
}
.faq-platforms {
display: flex; flex-wrap: wrap; gap: 8px;
}
.hero-routes {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
gap: 12px;
margin: 0 0 28px;
max-width: 860px;
}
.hero-route {
background: var(--panel);
border: 1px solid var(--border);
border-radius: 12px;
padding: 14px 16px;
color: var(--sub);
transition: border-color 0.2s, color 0.2s, transform 0.2s;
}
.hero-route:hover {
border-color: var(--yellow);
color: var(--text);
text-decoration: none;
transform: translateY(-1px);
}
.hero-route strong {
display: block;
font-size: 14px;
color: var(--text);
margin-bottom: 4px;
}
.hero-route span {
display: block;
font-size: 12px;
line-height: 1.5;
}
.plat-badge {
font-size: 12px; font-weight: 700;
padding: 4px 12px; border-radius: 99px;
border: 1px solid var(--border);
color: var(--sub);
transition: border-color 0.2s, color 0.2s;
cursor: default;
}
.plat-badge:hover { border-color: var(--yellow); color: var(--yellow); }
/* ââ€â‚¬Ã¢â€â‚¬ SIDEBAR + LAYOUT ââ€â‚¬Ã¢â€â‚¬ */
.faq-layout {
display: grid;
grid-template-columns: 220px 1fr;
gap: 48px;
padding: 48px 0 80px;
align-items: start;
}
@media (max-width: 720px) {
.faq-layout { grid-template-columns: 1fr; }
.faq-sidebar { display: none; }
}
.faq-sidebar {
position: sticky; top: 72px;
}
.sidebar-label {
font-size: 10px; font-weight: 700; letter-spacing: 2px;
text-transform: uppercase; color: var(--muted);
margin-bottom: 12px;
}
.sidebar-links { display: flex; flex-direction: column; gap: 4px; }
.sidebar-link {
font-size: 13px; color: var(--sub);
padding: 6px 10px; border-radius: 6px;
transition: background 0.15s, color 0.15s;
display: flex; align-items: center; gap: 8px;
}
.sidebar-link:hover {
background: var(--panel); color: var(--text);
text-decoration: none;
}
.sidebar-link.active { color: var(--yellow); background: rgba(250,204,21,0.06); }
.sidebar-count {
margin-left: auto; font-size: 11px;
color: var(--muted);
}
/* ââ€â‚¬Ã¢â€â‚¬ CATEGORIAS ââ€â‚¬Ã¢â€â‚¬ */
.faq-category { margin-bottom: 56px; }
.hub-intro {
background: linear-gradient(135deg, rgba(250,204,21,0.04), rgba(16,185,129,0.03));
border: 1px solid rgba(250,204,21,0.14);
border-radius: 16px;
padding: 24px;
margin: 0 0 40px;
}
.hub-intro h2 {
font-size: 20px;
margin: 0 0 12px;
}
.hub-intro p {
font-size: 14px;
color: var(--sub);
margin-bottom: 10px;
line-height: 1.75;
}
.hub-intro p:last-child { margin-bottom: 0; }
.faq-category-header {
display: flex; align-items: center; gap: 12px;
margin-bottom: 20px; padding-bottom: 16px;
border-bottom: 1px solid var(--border);
}
.faq-category-icon { font-size: 20px; }
.faq-category-title {
font-size: 19px; font-weight: 700; color: var(--text);
}
.faq-category-count {
font-size: 12px; color: var(--muted);
background: var(--panel); border: 1px solid var(--border);
padding: 2px 8px; border-radius: 99px;
}
/* ââ€â‚¬Ã¢â€â‚¬ ACCORDION ââ€â‚¬Ã¢â€â‚¬ */
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-of-type { border-top: 1px solid var(--border); }
.faq-q {
width: 100%; background: none; border: none;
padding: 18px 0;
display: flex; justify-content: space-between; align-items: center; gap: 16px;
cursor: pointer;
font-size: 14px; font-weight: 600; color: var(--text);
text-align: left; transition: color 0.2s;
}
.faq-q:hover { color: var(--yellow); }
.faq-q[aria-expanded="true"] { color: var(--yellow); }
.faq-chevron {
font-size: 16px; color: var(--muted);
transition: transform 0.3s; flex-shrink: 0;
}
.faq-item.open .faq-chevron { transform: rotate(180deg); color: var(--yellow); }
.faq-a { display: none; padding: 0 0 18px; }
.faq-item.open .faq-a { display: block; }
.faq-a p {
font-size: 14px; color: var(--sub); line-height: 1.75;
margin-bottom: 10px;
}
.faq-a p:last-child { margin-bottom: 0; }
.faq-a strong { color: var(--text); }
.faq-a a { color: var(--yellow); }
.faq-a ul { margin: 8px 0 8px 20px; }
.faq-a li { font-size: 14px; color: var(--sub); line-height: 1.75; }
.faq-a .page-link {
display: inline-flex; align-items: center; gap: 6px;
margin-top: 10px; font-size: 13px; font-weight: 600;
color: var(--yellow); border: 1px solid rgba(250,204,21,0.25);
padding: 5px 12px; border-radius: 6px;
transition: background 0.2s;
}
.faq-a .page-link:hover {
background: rgba(250,204,21,0.08); text-decoration: none;
}
/* ââ€â‚¬Ã¢â€â‚¬ CTA BLOCO ââ€â‚¬Ã¢â€â‚¬ */
.faq-cta-block {
background: linear-gradient(135deg, rgba(250,204,21,0.06) 0%, rgba(16,185,129,0.04) 100%);
border: 1px solid rgba(250,204,21,0.2);
border-radius: 16px; padding: 36px 40px;
text-align: center; margin: 0 0 56px;
}
.faq-cta-block h3 {
font-size: 20px; font-weight: 800; margin-bottom: 8px;
}
.faq-cta-block p { font-size: 14px; color: var(--sub); margin-bottom: 20px; }
.cta-btns { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
.btn-yellow {
background: var(--yellow); color: #0e1117;
font-size: 14px; font-weight: 800;
padding: 10px 22px; border-radius: 8px;
transition: opacity 0.2s; display: inline-flex; align-items: center; gap: 8px;
}
.btn-yellow:hover { opacity: 0.88; text-decoration: none; }
.btn-ghost {
background: transparent; color: var(--sub);
font-size: 14px; font-weight: 600;
padding: 10px 22px; border-radius: 8px;
border: 1px solid var(--border);
transition: border-color 0.2s, color 0.2s;
display: inline-flex; align-items: center; gap: 8px;
}
.btn-ghost:hover { border-color: var(--text); color: var(--text); text-decoration: none; }
/* ââ€â‚¬Ã¢â€â‚¬ GUIAS CLUSTER ââ€â‚¬Ã¢â€â‚¬ */
.cluster-section { margin: 0 0 56px; }
.cluster-section h3 { font-size: 22px; font-weight: 800; margin-bottom: 6px; }
.cluster-section > p { font-size: 14px; color: var(--sub); margin-bottom: 28px; }
.priority-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
gap: 12px;
margin-bottom: 28px;
}
.priority-card {
background: var(--panel);
border: 1px solid var(--border);
border-radius: 14px;
padding: 16px;
color: var(--sub);
transition: border-color 0.2s, color 0.2s;
}
.priority-card:hover {
border-color: var(--yellow);
color: var(--text);
text-decoration: none;
}
.priority-card strong {
display: block;
font-size: 14px;
color: var(--text);
margin-bottom: 6px;
}
.priority-card span {
display: block;
font-size: 12px;
line-height: 1.55;
}
.cluster-group { margin-bottom: 32px; }
.cluster-group-title { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); margin-bottom: 12px; }
.cluster-links { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 8px; }
.cluster-link { display: flex; align-items: center; gap: 8px; padding: 10px 14px; background: var(--panel); border: 1px solid var(--border); border-radius: 8px; font-size: 13px; color: var(--sub); transition: border-color 0.2s, color 0.2s; }
.cluster-link:hover { border-color: var(--yellow); color: var(--text); text-decoration: none; }
.cluster-link-dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }
/* ââ€â‚¬Ã¢â€â‚¬ RODAPÉ ââ€â‚¬Ã¢â€â‚¬ */
footer {
border-top: 1px solid var(--border);
padding: 32px 0;
text-align: center;
}
footer p { font-size: 13px; color: var(--muted); }
footer a { color: var(--sub); }
</style>
<script>window._forcedLang='en';</script>
<script src="/lang-switcher.js"></script>
</head>
<body>
<!-- NAV -->
<nav>
<div class="nav-inner">
<div style="display:flex;align-items:center;gap:20px;">
<a href="index.html" class="nav-logo">★ NODUS</a>
<a href="index.html" class="nav-back">↠Back to site</a>
</div>
<a href="https://chromewebstore.google.com/detail/nodus-ai-idea-capture/egidifchnpakfghmbnpghgefaojbijdf" class="nav-cta" target="_blank" rel="noopener">Install free</a>
</div>
</nav>
<!-- HERO -->
<section class="faq-hero">
<div class="container">
<div class="faq-hero-label">Help center</div>
<h1>Frequently <span style="color:var(--yellow)">asked questions</span></h1>
<p>Everything about how to save, export and organize your AI conversations  no account, no server, no hassle.</p>
<div class="hero-routes">
<a class="hero-route" href="faq/como-salvar-conversas-chatgpt">
<strong>Save conversations</strong>
<span>Start with capture: preserve useful responses before they disappear in the chat flow.</span>
</a>
<a class="hero-route" href="faq/como-exportar-conversas-chatgpt">
<strong>Export and reuse</strong>
<span>Turn a saved response into HTML, Markdown or DOC when the chat needs to become a document.</span>
</a>
<a class="hero-route" href="faq/como-organizar-conversas-ia">
<strong>Organize the archive</strong>
<span>Use search, tags, notes and queues so your captures stay useful after weeks or months.</span>
</a>
<a class="hero-route" href="faq/como-fazer-backup-conversas-ia">
<strong>Protect the history</strong>
<span>Use backup and restoration correctly when the concern is migration, safety or recovery.</span>
</a>
</div> <div class="faq-platforms">
<span class="plat-badge">ChatGPT</span>
<span class="plat-badge">Claude</span>
<span class="plat-badge">Gemini</span>
<span class="plat-badge">Perplexity</span>
<span class="plat-badge">Grok</span>
<span class="plat-badge">Copilot</span>
<span class="plat-badge">DeepSeek</span>
</div>
</div>
</section>
<!-- LAYOUT PRINCIPAL -->
<div class="container-wide">
<div class="faq-layout">
<!-- SIDEBAR -->
<aside class="faq-sidebar">
<div class="sidebar-label">Categories</div>
<nav class="sidebar-links">
<a href="#comecar" class="sidebar-link">🚀 Getting Started <span class="sidebar-count">6</span></a>
<a href="#salvar" class="sidebar-link">💾 Save Conversations <span class="sidebar-count">9</span></a>
<a href="#exportar" class="sidebar-link">📤 Export & Download <span class="sidebar-count">7</span></a>
<a href="#organizar" class="sidebar-link">🗂︠Organize <span class="sidebar-count">7</span></a>
<a href="#cadeias" class="sidebar-link">ðŸâ€â€” Chains <span class="sidebar-count">6</span></a>
<a href="#privacidade" class="sidebar-link">ðŸâ€â€™ Privacy <span class="sidebar-count">7</span></a>
<a href="#planos" class="sidebar-link">💳 Plans & Pricing <span class="sidebar-count">6</span></a>
<a href="#plataformas" class="sidebar-link">🌠By Platform <span class="sidebar-count">6</span></a>
</nav>
</aside>
<!-- CONTEÚDO -->
<main>
<!-- CTA topo -->
<div class="faq-cta-block">
<h3>Don't have NODUS yet?</h3>
<p>Install free in 30 seconds. Works with ChatGPT, Claude, Gemini and 4 more platforms.</p>
<div class="cta-btns">
<a class="btn-yellow" href="https://chromewebstore.google.com/detail/nodus-ai-idea-capture/egidifchnpakfghmbnpghgefaojbijdf" target="_blank" rel="noopener">
Install on Chrome
</a>
<a class="btn-ghost" href="https://addons.mozilla.org/firefox/addon/nodus-ai-idea-capture/" target="_blank" rel="noopener">
Firefox
</a>
</div>
</div>
<section class="hub-intro">
<h2>Use this page as a hub, not just a directory</h2>
<p>This FAQ is the main entry point for NODUS guides. The most important paths are saving conversations, exporting useful responses, organizing the archive and protecting your local history.</p>
<p>The platform guides below exist to answer specific search intents. If you already know what you need, jump straight to the workflow instead of browsing every question.</p>
</section> <!-- â•Ââ• 1. GETTING STARTED â•Ââ• -->
<section class="faq-category" id="comecar">
<div class="faq-category-header">
<span class="faq-category-icon">🚀</span>
<h2 class="faq-category-title">Getting Started</h2>
<span class="faq-category-count">6 questions</span>
</div>
<div class="faq-item">
<button class="faq-q" aria-expanded="false">What is NODUS? <span class="faq-chevron">â–¾</span></button>
<div class="faq-a"><p>NODUS is a browser extension that lets you <strong>save, organize and reuse AI responses</strong> with one click. It works with ChatGPT, Claude, Gemini, Perplexity, Grok, Copilot and DeepSeek. Everything is stored locally on your device  no account, no server, no mandatory subscription.</p></div>
</div>
<div class="faq-item">
<button class="faq-q" aria-expanded="false">How do I install NODUS? <span class="faq-chevron">â–¾</span></button>
<div class="faq-a">
<p>Installation takes less than 30 seconds:</p>
<ul>
<li><strong>Chrome / Edge / Brave:</strong> visit the Chrome Web Store and click "Add to Chrome"</li>
<li><strong>Firefox:</strong> visit Mozilla Add-ons and click "Add to Firefox"</li>
</ul>
<p>After installing, open any supported AI platform  NODUS buttons appear automatically.</p>
</div>
</div>
<div class="faq-item">
<button class="faq-q" aria-expanded="false">Do I need to create an account to use NODUS? <span class="faq-chevron">â–¾</span></button>
<div class="faq-a"><p><strong>No.</strong> NODUS works without registration, no email, no password. Install and start using immediately. Your data stays in the browser's local storage.</p></div>
</div>
<div class="faq-item">
<button class="faq-q" aria-expanded="false">Which browsers are supported? <span class="faq-chevron">â–¾</span></button>
<div class="faq-a">
<p>NODUS works in:</p>
<ul>
<li><strong>Chrome</strong> (version 88+)</li>
<li><strong>Firefox</strong> (version 109+)</li>
<li><strong>Edge</strong> (Chromium-based)</li>
<li><strong>Brave</strong> and other Chromium browsers</li>
</ul>
</div>
</div>
<div class="faq-item">
<button class="faq-q" aria-expanded="false">How does the save button work? <span class="faq-chevron">â–¾</span></button>
<div class="faq-a"><p>When you open any supported platform, NODUS injects floating buttons next to AI responses. Click <strong>Save</strong> to capture the question and response instantly. Click <strong>Quick</strong> to save without opening the settings panel. Click <strong>Dash</strong> to open your captures dashboard.</p></div>
</div>
<div class="faq-item">
<button class="faq-q" aria-expanded="false">Which AI platforms does NODUS work with? <span class="faq-chevron">â–¾</span></button>
<div class="faq-a">
<p>NODUS currently supports <strong>7 platforms</strong>:</p>
<ul>
<li>ChatGPT (chat.openai.com)</li>
<li>Claude (claude.ai)</li>
<li>Gemini (gemini.google.com)</li>
<li>Perplexity (perplexity.ai)</li>
<li>Grok (grok.com / x.com)</li>
<li>Microsoft Copilot (copilot.microsoft.com)</li>
<li>DeepSeek (chat.deepseek.com)</li>
</ul>
</div>
</div>
</section>
<!-- â•Ââ• 2. SAVE CONVERSATIONS â•Ââ• -->
<section class="faq-category" id="salvar">
<div class="faq-category-header">
<span class="faq-category-icon">💾</span>
<h2 class="faq-category-title">Save Conversations</h2>
<span class="faq-category-count">9 questions</span>
</div>
<div class="faq-item">
<button class="faq-q" aria-expanded="false">How do I save a ChatGPT conversation? <span class="faq-chevron">â–¾</span></button>
<div class="faq-a">
<p>With NODUS installed, open ChatGPT normally. NODUS buttons appear next to each response. Click <strong>Save</strong> to open the capture panel, add tags and choose the destination queue  or click <strong>Quick</strong> to save with a single click without any configuration.</p>
<a class="page-link" href="faq/como-salvar-conversas-chatgpt">Complete guide: saving ChatGPT conversations →</a>
</div>
</div>
<div class="faq-item">
<button class="faq-q" aria-expanded="false">How do I save a Claude conversation? <span class="faq-chevron">â–¾</span></button>
<div class="faq-a">
<p>NODUS works natively on Claude.ai. Capture buttons appear next to responses automatically. Click <strong>Save</strong> to capture the question and response to your local dashboard. Works equally for Claude projects and regular conversations.</p>
<a class="page-link" href="faq/como-salvar-conversas-claude">Complete guide: saving Claude conversations →</a>
</div>
</div>
<div class="faq-item">
<button class="faq-q" aria-expanded="false">How do I save a Gemini conversation? <span class="faq-chevron">â–¾</span></button>
<div class="faq-a">
<p>Install NODUS and visit gemini.google.com. Capture buttons appear next to Gemini responses. Click <strong>Save</strong> to store the conversation locally, with tags and the same organization as other platforms.</p>
<a class="page-link" href="faq/como-salvar-conversas-gemini">Complete guide: saving Gemini conversations →</a>
</div>
</div>
<div class="faq-item">
<button class="faq-q" aria-expanded="false">How do I save a Perplexity response? <span class="faq-chevron">â–¾</span></button>
<div class="faq-a"><p>NODUS automatically detects responses on Perplexity.ai and injects capture buttons. Click <strong>Save</strong> to record the response along with cited sources. Ideal for research you'll want to reference later.</p></div>
</div>
<div class="faq-item">
<button class="faq-q" aria-expanded="false">How do I archive Grok responses? <span class="faq-chevron">â–¾</span></button>
<div class="faq-a"><p>NODUS works on both grok.com and x.com/grok. When you open a conversation with Grok, capture buttons appear next to the responses. Click <strong>Save</strong> to archive them locally in your NODUS dashboard.</p></div>
</div>
<div class="faq-item">
<button class="faq-q" aria-expanded="false">How do I save DeepSeek responses? <span class="faq-chevron">â–¾</span></button>
<div class="faq-a"><p>NODUS natively supports DeepSeek (chat.deepseek.com). Capture buttons appear next to responses. Click <strong>Save</strong> to record the question and response in your local dashboard.</p></div>
</div>
<div class="faq-item">
<button class="faq-q" aria-expanded="false">Can I save multiple responses at once? <span class="faq-chevron">â–¾</span></button>
<div class="faq-a"><p>Each capture saves one question and response at a time. To save multiple responses from a conversation, click <strong>Save</strong> on each response you want. Then use <strong>Chains</strong> to connect those captures into a logical sequence.</p></div>
</div>
<div class="faq-item">
<button class="faq-q" aria-expanded="false">What is Quick Capture? <span class="faq-chevron">â–¾</span></button>
<div class="faq-a"><p>Quick Capture (the <strong>Quick</strong> button) saves the response directly to the default queue without opening the settings panel. It's ideal when you want to record something fast without interrupting your conversation flow. The capture is available in the dashboard to organize later.</p></div>
</div>
<div class="faq-item">
<button class="faq-q" aria-expanded="false">How do I never lose an important AI response again? <span class="faq-chevron">â–¾</span></button>
<div class="faq-a"><p>Install NODUS and use the <strong>Quick</strong> button whenever a response looks useful  even if you're not sure yet what for. The habit of capturing before closing the tab eliminates information loss. Your dashboard accumulates everything and full-text search lets you find any capture later.</p></div>
</div>
</section>
<!-- â•Ââ• 3. EXPORT & DOWNLOAD â•Ââ• -->
<section class="faq-category" id="exportar">
<div class="faq-category-header">
<span class="faq-category-icon">📤</span>
<h2 class="faq-category-title">Export & Download</h2>
<span class="faq-category-count">7 questions</span>
</div>
<div class="faq-item">
<button class="faq-q" aria-expanded="false">How do I export a ChatGPT conversation to Word? <span class="faq-chevron">â–¾</span></button>
<div class="faq-a"><p>Open your NODUS dashboard, select the desired capture and click <strong>Export → DOCX</strong>. The Word file is generated directly in your browser and saved to your computer. You can chain multiple captures with Chains and export everything together as a structured document.</p></div>
</div>
<div class="faq-item">
<button class="faq-q" aria-expanded="false">How do I download a Claude conversation as PDF? <span class="faq-chevron">â–¾</span></button>
<div class="faq-a"><p>NODUS exports to <strong>HTML</strong>, which you can print as a PDF directly from the browser (Ctrl+P → Save as PDF). For direct PDF export, we recommend exporting as HTML and using the browser's print function  the result is well formatted.</p></div>
</div>
<div class="faq-item">
<button class="faq-q" aria-expanded="false">Which export formats are supported? <span class="faq-chevron">â–¾</span></button>
<div class="faq-a">
<p>NODUS supports export in:</p>
<ul>
<li><strong>TXT</strong>  plain text, compatible with any editor</li>
<li><strong>HTML</strong>  formatted, printable as PDF</li>
<li><strong>DOCX</strong>  compatible with Word, Google Docs and LibreOffice</li>
</ul>
<p>Chained captures (Chains) can be exported together as a single document.</p>
</div>
</div>
<div class="faq-item">
<button class="faq-q" aria-expanded="false">How do I extract my complete AI conversation history? <span class="faq-chevron">â–¾</span></button>
<div class="faq-a"><p>In the NODUS dashboard, go to <strong>Settings → Export all</strong>. This generates a file with all your captures in JSON format (for reimporting into NODUS), or you can export each queue individually as DOCX or HTML.</p></div>
</div>
<div class="faq-item">
<button class="faq-q" aria-expanded="false">How do I copy a formatted ChatGPT response? <span class="faq-chevron">â–¾</span></button>
<div class="faq-a"><p>In the card view in the dashboard, click <strong>Copy</strong>. The content is copied with Markdown formatting preserved  headings, lists, code  ready to paste into any editor that supports Markdown.</p></div>
</div>
<div class="faq-item">
<button class="faq-q" aria-expanded="false">Can I back up all my captures? <span class="faq-chevron">â–¾</span></button>
<div class="faq-a"><p>Yes. In <strong>Settings → Export data</strong>, you download a JSON file with all your captures. This file can be reimported into NODUS on another computer or after reinstalling the extension.</p></div>
</div>
<div class="faq-item">
<button class="faq-q" aria-expanded="false">How do I organize AI conversations into a study document? <span class="faq-chevron">â–¾</span></button>
<div class="faq-a"><p>Use <strong>Chains</strong> to connect related captures from different sessions (even from different platforms). Then export the entire chain as DOCX  the result is a structured document with all questions and responses chained in logical order.</p></div>
</div>
</section>
<!-- â•Ââ• 4. ORGANIZE â•Ââ• -->
<section class="faq-category" id="organizar">
<div class="faq-category-header">
<span class="faq-category-icon">🗂ï¸Â</span>
<h2 class="faq-category-title">Organize</h2>
<span class="faq-category-count">7 questions</span>
</div>
<div class="faq-item">
<button class="faq-q" aria-expanded="false">How do I use tags to organize captures? <span class="faq-chevron">â–¾</span></button>
<div class="faq-a"><p>When saving a capture, you can add up to 4 tags to categorize the content. Tags appear on dashboard cards and act as filters  click a tag to see only captures with that category. Create tags like "backend", "study", "ideas", "work" or any category that makes sense for you.</p></div>
</div>
<div class="faq-item">
<button class="faq-q" aria-expanded="false">What are queues (Quick, Default, Q1, Q2...)? <span class="faq-chevron">â–¾</span></button>
<div class="faq-a"><p>Queues are separate collections for organizing captures by context or priority. The <strong>Quick Queue</strong> is for fast captures, without categorization. The <strong>Default</strong> is the general queue. Queues Q1–Q4 (PRO plan) are customizable by theme, project or client. Each queue has a different border color on the cards.</p></div>
</div>
<div class="faq-item">
<button class="faq-q" aria-expanded="false">How do I search within my captures? <span class="faq-chevron">â–¾</span></button>
<div class="faq-a"><p>In the NODUS dashboard, use the search bar at the top. Search works in <strong>real time</strong> and covers the title, question and response of all captures. Combine search with platform or tag filters to find exactly what you're looking for.</p></div>
</div>
<div class="faq-item">
<button class="faq-q" aria-expanded="false">How do I filter captures by AI platform? <span class="faq-chevron">â–¾</span></button>
<div class="faq-a"><p>In the dashboard, click the platform badges below the search bar. Click <strong>ChatGPT</strong>, <strong>Claude</strong>, <strong>Gemini</strong> or any other platform to see only captures from that source. Click again to remove the filter.</p></div>
</div>
<div class="faq-item">
<button class="faq-q" aria-expanded="false">How do I use Projects to separate different contexts? <span class="faq-chevron">â–¾</span></button>
<div class="faq-a"><p>Projects (PRO plan) let you create completely separate spaces  for example, "Work", "Studies" and "Personal". Each project has its own queues and captures. Switch between projects with a single click without mixing different content.</p></div>
</div>
<div class="faq-item">
<button class="faq-q" aria-expanded="false">Can I edit a capture after saving? <span class="faq-chevron">â–¾</span></button>
<div class="faq-a"><p>Yes. Open the card in the dashboard and click <strong>Edit</strong>. You can modify the title, add or remove tags and move the capture between queues. The original content (question and response) is preserved.</p></div>
</div>
<div class="faq-item">
<button class="faq-q" aria-expanded="false">How do I find an AI response I saved weeks ago? <span class="faq-chevron">â–¾</span></button>
<div class="faq-a"><p>Use the text search in the dashboard  it covers the full content of all captures, not just the title. If you remember any keyword from the response, just type it. Combine with the platform filter (e.g. Claude) if you know where it came from.</p></div>
</div>
</section>
<!-- â•Ââ• 5. CHAINS â•Ââ• -->
<section class="faq-category" id="cadeias">
<div class="faq-category-header">
<span class="faq-category-icon">ðŸâ€â€”</span>
<h2 class="faq-category-title">Chains</h2>
<span class="faq-category-count">6 questions</span>
</div>
<div class="faq-item">
<button class="faq-q" aria-expanded="false">What are Chains? <span class="faq-chevron">â–¾</span></button>
<div class="faq-a"><p>Chains let you <strong>connect captures from different conversations</strong> into a logical sequence. Imagine you researched a topic on ChatGPT, then went deeper on Claude and found examples on Gemini  a Chain links those three captures into a continuous thread of reasoning, even coming from different platforms.</p></div>
</div>
<div class="faq-item">
<button class="faq-q" aria-expanded="false">How do I create a Chain? <span class="faq-chevron">â–¾</span></button>
<div class="faq-a"><p>In the <strong>Chains</strong> tab of the dashboard, click "New Chain". Give the chain a name and add existing captures by dragging them into the desired order. You can add captures from any platform and rearrange them at any time.</p></div>
</div>
<div class="faq-item">
<button class="faq-q" aria-expanded="false">Can I mix ChatGPT and Claude captures in the same Chain? <span class="faq-chevron">â–¾</span></button>
<div class="faq-a"><p><strong>Yes</strong>  that is one of the main advantages of Chains. You can connect captures from ChatGPT, Claude, Gemini, Perplexity and any other supported platform in a single sequence. Each card retains the identification of its source platform.</p></div>
</div>
<div class="faq-item">
<button class="faq-q" aria-expanded="false">How do I export a Chain? <span class="faq-chevron">â–¾</span></button>
<div class="faq-a"><p>Open the Chain in the dashboard and click <strong>Export</strong>. You can export the complete sequence as DOCX or HTML  the result is a structured document with all questions and responses in order, ideal for reports, studies or documentation.</p></div>
</div>
<div class="faq-item">
<button class="faq-q" aria-expanded="false">What is the capture limit in a Chain? <span class="faq-chevron">â–¾</span></button>
<div class="faq-a"><p>On the free plan, each Chain can have up to <strong>5 captures</strong>. On the PRO plan, the limit is significantly higher, allowing extensive chains for complex projects.</p></div>
</div>
<div class="faq-item">
<button class="faq-q" aria-expanded="false">What is the purpose of injecting a Chain into an AI conversation? <span class="faq-chevron">â–¾</span></button>
<div class="faq-a"><p>With the injection feature, you can insert the content of a Chain directly into the prompt field of any supported platform. It is like giving the AI the full context of previous research  without manually copying and pasting each response.</p></div>
</div>
</section>
<!-- â•Ââ• 6. PRIVACY â•Ââ• -->
<section class="faq-category" id="privacidade">
<div class="faq-category-header">
<span class="faq-category-icon">ðŸâ€â€™</span>
<h2 class="faq-category-title">Privacy & Security</h2>
<span class="faq-category-count">7 questions</span>
</div>
<div class="faq-item">
<button class="faq-q" aria-expanded="false">Does NODUS send my data to any server? <span class="faq-chevron">â–¾</span></button>
<div class="faq-a"><p><strong>No.</strong> NODUS has no server of its own that receives your captures. Everything is stored in your browser's local storage (chrome.storage.local / browser.storage.local). No capture, tag or content ever leaves your device.</p></div>
</div>
<div class="faq-item">
<button class="faq-q" aria-expanded="false">Does NODUS access my AI conversations without my asking? <span class="faq-chevron">â–¾</span></button>
<div class="faq-a"><p><strong>No.</strong> NODUS only reads page content when you actively click Save or Quick. There is no automatic capture, passive monitoring or reading of conversations you have not chosen to save.</p></div>
</div>
<div class="faq-item">
<button class="faq-q" aria-expanded="false">Are my data safe if someone accesses my computer? <span class="faq-chevron">â–¾</span></button>
<div class="faq-a"><p>Captures are stored in the browser profile of your operating system user. If your user profile on the computer is protected by a password, captures are equally protected. NODUS does not add extra encryption  use your operating system's protections for physical security.</p></div>
</div>
<div class="faq-item">
<button class="faq-q" aria-expanded="false">Is NODUS open source? <span class="faq-chevron">â–¾</span></button>
<div class="faq-a"><p>Yes. The NODUS core is available on GitHub under the MIT license. Anyone can audit the code and verify there is no hidden data collection. You do not have to take our word for it  see the code.</p></div>
</div>
<div class="faq-item">
<button class="faq-q" aria-expanded="false">What happens to my data if I uninstall NODUS? <span class="faq-chevron">â–¾</span></button>
<div class="faq-a"><p>When you uninstall the extension, the associated local storage is deleted by the browser. <strong>Back up first:</strong> go to Settings → Export data to download all your captures as JSON. You can reimport them after reinstalling.</p></div>
</div>
<div class="faq-item">
<button class="faq-q" aria-expanded="false">What permissions does NODUS request and why? <span class="faq-chevron">â–¾</span></button>
<div class="faq-a">
<p>NODUS requests only the permissions needed to work:</p>
<ul>
<li><strong>Read AI pages</strong>  to detect responses and inject the buttons</li>
<li><strong>Local storage</strong>  to save your captures on the device</li>
<li><strong>Tab access</strong>  to know which platform you are on</li>
</ul>
<p>No permission for camera, microphone, browsing history or passwords is requested.</p>
</div>
</div>
<div class="faq-item">
<button class="faq-q" aria-expanded="false">Does NODUS work offline? <span class="faq-chevron">â–¾</span></button>
<div class="faq-a"><p>The NODUS dashboard works completely <strong>offline</strong>  you can access, search and export captures without an internet connection. Capturing new conversations requires a connection because the AI platforms themselves need to be accessible.</p></div>
</div>
</section>
<!-- â•Ââ• 7. PLANS & PRICING â•Ââ• -->
<section class="faq-category" id="planos">
<div class="faq-category-header">
<span class="faq-category-icon">💳</span>
<h2 class="faq-category-title">Plans & Pricing</h2>
<span class="faq-category-count">6 questions</span>
</div>
<div class="faq-item">
<button class="faq-q" aria-expanded="false">Is NODUS free? <span class="faq-chevron">â–¾</span></button>
<div class="faq-a"><p>Yes. The free plan includes saving, organizing, searching and exporting captures with no time limit. It is free forever  not a trial. The PRO plan unlocks advanced features for those who want to go further.</p></div>
</div>
<div class="faq-item">
<button class="faq-q" aria-expanded="false">What is included in the free plan? <span class="faq-chevron">â–¾</span></button>
<div class="faq-a">
<ul>
<li>Unlimited conversation captures (ChatGPT, Claude, Gemini and 4 more)</li>
<li>Unified dashboard with search and filters</li>
<li>Tags and Quick Queue</li>
<li>Chains with up to 5 captures</li>
<li>Export in TXT, HTML and DOCX</li>
<li>1 additional queue (Q1)</li>
</ul>
</div>
</div>
<div class="faq-item">
<button class="faq-q" aria-expanded="false">What does the PRO plan add? <span class="faq-chevron">â–¾</span></button>
<div class="faq-a">
<ul>
<li>3 additional queues (Q2, Q3, Q4) for advanced organization</li>
<li>Projects  separate spaces by context</li>
<li>Unlimited Chain size</li>
<li>Chain injection into AI conversations</li>
<li>Priority support</li>
</ul>
</div>
</div>
<div class="faq-item">
<button class="faq-q" aria-expanded="false">Is PRO a subscription or a one-time purchase? <span class="faq-chevron">â–¾</span></button>
<div class="faq-a"><p>The PRO plan is available as a <strong>one-time purchase</strong> with lifetime access. No monthly subscriptions, no automatic renewal, no surprises on your bill.</p></div>
</div>
<div class="faq-item">
<button class="faq-q" aria-expanded="false">Can I use PRO on more than one computer? <span class="faq-chevron">â–¾</span></button>
<div class="faq-a"><p>Yes. The PRO license is tied to your license account, not to the device. You can activate PRO on as many computers as you need with the same license key.</p></div>
</div>
<div class="faq-item">
<button class="faq-q" aria-expanded="false">Is there a refund policy? <span class="faq-chevron">â–¾</span></button>
<div class="faq-a"><p>Yes. We offer a refund within <strong>7 days</strong> of purchase, no questions asked. Contact us by support email with your order number.</p></div>
</div>
</section>
<!-- â•Ââ• 8. BY PLATFORM â•Ââ• -->
<section class="faq-category" id="plataformas">
<div class="faq-category-header">
<span class="faq-category-icon">ðŸŒÂ</span>
<h2 class="faq-category-title">By Platform</h2>
<span class="faq-category-count">6 questions</span>
</div>
<div class="faq-item">
<button class="faq-q" aria-expanded="false">Does NODUS work with ChatGPT in languages other than English? <span class="faq-chevron">â–¾</span></button>
<div class="faq-a"><p>Yes. NODUS captures conversations in any language  English, Portuguese, Spanish or any other. The language of the conversation does not affect how the capture buttons work.</p></div>
</div>
<div class="faq-item">
<button class="faq-q" aria-expanded="false">Does it work with Claude Sonnet and Claude Opus? <span class="faq-chevron">â–¾</span></button>
<div class="faq-a"><p>Yes. NODUS works with all Claude versions available on claude.ai, including Sonnet, Haiku and Opus. The model used in the conversation does not affect the capture.</p></div>
</div>
<div class="faq-item">
<button class="faq-q" aria-expanded="false">Does NODUS work with Gemini Advanced? <span class="faq-chevron">â–¾</span></button>
<div class="faq-a"><p>Yes. NODUS captures responses from Gemini in all versions available on gemini.google.com, including Gemini Advanced.</p></div>
</div>
<div class="faq-item">
<button class="faq-q" aria-expanded="false">Does it work with Microsoft Copilot? <span class="faq-chevron">â–¾</span></button>
<div class="faq-a"><p>Yes. NODUS supports Microsoft Copilot at copilot.microsoft.com. Capture buttons appear next to responses automatically.</p></div>
</div>
<div class="faq-item">
<button class="faq-q" aria-expanded="false">Are there plans to add more platforms? <span class="faq-chevron">â–¾</span></button>
<div class="faq-a"><p>Yes. NODUS is under active development and new platforms are added based on demand. Frequently requested platforms include Poe, Pi and others. Follow updates on GitHub.</p></div>
</div>
<div class="faq-item">
<button class="faq-q" aria-expanded="false">Does NODUS capture AI-generated images (DALL·E, Midjourney)? <span class="faq-chevron">▾</span></button>
<div class="faq-a"><p>NODUS captures images generated within supported platforms when they appear in a response (e.g. images generated by ChatGPT via DALL·E). Dedicated image platforms like Midjourney are not supported at this time.</p></div>
</div>
</section>
<!-- â•Ââ• DETAILED GUIDES â•Ââ• -->
<div class="cluster-section">
<h3>Detailed guides by platform</h3>
<p>Use the priority paths first if your goal is high-intent search traffic: save, export, search, then protect the archive.</p> <div class="priority-grid">
<a class="priority-card" href="faq/como-salvar-conversas-chatgpt">
<strong>How to save conversations</strong>
<span>Core capture intent across ChatGPT, Claude, Gemini and the rest of the supported platforms.</span>
</a>
<a class="priority-card" href="faq/como-exportar-conversas-chatgpt">
<strong>How to export conversations</strong>
<span>Best when the next step is Word, Docs, Markdown, HTML, sharing or reuse outside the chat.</span>
</a>
<a class="priority-card" href="faq/como-pesquisar-historico-ia">
<strong>How to search history</strong>
<span>Useful when the problem is not saving more, but finding an old response fast enough to reuse it.</span>
</a>
<a class="priority-card" href="faq/como-fazer-backup-conversas-ia">
<strong>How to protect your archive</strong>
<span>Use backup, JSON export and restoration when the concern is migration, recovery or local safety.</span>
</a>
</div>
<div class="cluster-group">
<div class="cluster-group-title">How to save conversations</div>
<div class="cluster-links">
<a class="cluster-link" href="faq/como-salvar-conversas-chatgpt"><span class="cluster-link-dot" style="background:#10b981;"></span>ChatGPT</a>
<a class="cluster-link" href="faq/como-salvar-conversas-claude"><span class="cluster-link-dot" style="background:#8b5cf6;"></span>Claude</a>
<a class="cluster-link" href="faq/como-salvar-conversas-gemini"><span class="cluster-link-dot" style="background:#3b82f6;"></span>Gemini</a>
<a class="cluster-link" href="faq/como-salvar-conversas-perplexity"><span class="cluster-link-dot" style="background:#06b6d4;"></span>Perplexity</a>
<a class="cluster-link" href="faq/como-salvar-conversas-grok"><span class="cluster-link-dot" style="background:#ec4899;"></span>Grok</a>
<a class="cluster-link" href="faq/como-salvar-conversas-copilot"><span class="cluster-link-dot" style="background:#0284c7;"></span>Copilot</a>
<a class="cluster-link" href="faq/como-salvar-conversas-deepseek"><span class="cluster-link-dot" style="background:#6366f1;"></span>DeepSeek</a>
</div>
</div>
<div class="cluster-group">
<div class="cluster-group-title">How to export conversations</div>
<div class="cluster-links">
<a class="cluster-link" href="faq/como-exportar-conversas-chatgpt"><span class="cluster-link-dot" style="background:#10b981;"></span>ChatGPT</a>
<a class="cluster-link" href="faq/como-exportar-conversas-claude"><span class="cluster-link-dot" style="background:#8b5cf6;"></span>Claude</a>
<a class="cluster-link" href="faq/como-exportar-conversas-gemini"><span class="cluster-link-dot" style="background:#3b82f6;"></span>Gemini</a>
<a class="cluster-link" href="faq/como-exportar-conversas-perplexity"><span class="cluster-link-dot" style="background:#06b6d4;"></span>Perplexity</a>
<a class="cluster-link" href="faq/como-exportar-conversas-grok"><span class="cluster-link-dot" style="background:#ec4899;"></span>Grok</a>
<a class="cluster-link" href="faq/como-exportar-conversas-copilot"><span class="cluster-link-dot" style="background:#0284c7;"></span>Copilot</a>
<a class="cluster-link" href="faq/como-exportar-conversas-deepseek"><span class="cluster-link-dot" style="background:#6366f1;"></span>DeepSeek</a>
</div>
</div>
<div class="cluster-group">
<div class="cluster-group-title">Complete guide</div>
<div class="cluster-links">
<a class="cluster-link" href="salvar-conversas-ia.html" style="border-color:rgba(250,204,21,0.3);"><span class="cluster-link-dot" style="background:#facc15;"></span>How to save AI conversations  pillar guide</a>
</div>
</div>
<div class="cluster-group" style="margin-bottom:0;">
<div class="cluster-group-title">Other guides</div>
<div class="cluster-links">
<a class="cluster-link" href="faq/como-exportar-historico-ia-word"><span class="cluster-link-dot" style="background:#facc15;"></span>Export to Word</a>
<a class="cluster-link" href="faq/como-baixar-historico-conversas-ia"><span class="cluster-link-dot" style="background:#facc15;"></span>Download AI history</a>
<a class="cluster-link" href="faq/como-organizar-conversas-ia"><span class="cluster-link-dot" style="background:#facc15;"></span>Organize conversations</a>
<a class="cluster-link" href="faq/como-nao-perder-resposta-ia"><span class="cluster-link-dot" style="background:#facc15;"></span>Never lose a response again</a>
<a class="cluster-link" href="faq/extensao-salvar-conversas-ia"><span class="cluster-link-dot" style="background:#facc15;"></span>Extension to save conversations</a>
<a class="cluster-link" href="faq/como-pesquisar-historico-ia"><span class="cluster-link-dot" style="background:#facc15;"></span>Search AI history</a>
<a class="cluster-link" href="faq/como-fazer-backup-conversas-ia"><span class="cluster-link-dot" style="background:#facc15;"></span>Back up conversations</a>
<a class="cluster-link" href="faq/recuperar-historico-chatgpt"><span class="cluster-link-dot" style="background:#facc15;"></span>ChatGPT history disappeared</a>
<a class="cluster-link" href="faq/como-anotar-respostas-ia"><span class="cluster-link-dot" style="background:#facc15;"></span>Annotate AI responses</a>
<a class="cluster-link" href="faq/como-usar-nodus"><span class="cluster-link-dot" style="background:#facc15;"></span>How to use NODUS</a>
<a class="cluster-link" href="faq/nodus-vs-historico-nativo-ia"><span class="cluster-link-dot" style="background:#facc15;"></span>NODUS vs native history</a>
</div>
</div>
</div>
<!-- CTA fundo -->
<div class="faq-cta-block" style="margin-top:8px;">
<h3>Ready to get started?</h3>
<p>Install free and save your next AI conversation in less than 1 minute. Works with ChatGPT, Claude, Gemini, Perplexity, Grok, Copilot and DeepSeek.</p>
<div class="cta-btns">
<a class="btn-yellow" href="https://chromewebstore.google.com/detail/nodus-ai-idea-capture/egidifchnpakfghmbnpghgefaojbijdf" target="_blank" rel="noopener">
Install on Chrome  free
</a>
<a class="btn-ghost" href="https://addons.mozilla.org/firefox/addon/nodus-ai-idea-capture/" target="_blank" rel="noopener">
Firefox
</a>
</div>
</div>
</main>
</div>
</div>
<!-- FOOTER -->
<footer>
<div class="container">
<p style="margin-bottom:8px;">
<a href="index.html">★ NODUS</a> ·
<a href="index.html#privacidade">Privacy</a> ·
<a href="https://github.com/mmcarvalhodev/nodus" target="_blank" rel="noopener">GitHub</a> ·
<a href="checkout.html">PRO Plan</a>
</p>
<p>© 2025 NODUS. Browser extension. Your data stays with you.</p>
</div>
</footer>
<!-- ACCORDION JS -->
<script>
document.querySelectorAll('.faq-q').forEach(btn => {
btn.addEventListener('click', () => {
const item = btn.closest('.faq-item');
const isOpen = item.classList.contains('open');
document.querySelectorAll('.faq-item.open').forEach(el => {
el.classList.remove('open');
el.querySelector('.faq-q').setAttribute('aria-expanded', 'false');
});
if (!isOpen) {
item.classList.add('open');
btn.setAttribute('aria-expanded', 'true');
}
});
});
// Highlight sidebar link no scroll
const sections = document.querySelectorAll('.faq-category');
const sideLinks = document.querySelectorAll('.sidebar-link');
const observer = new IntersectionObserver(entries => {
entries.forEach(e => {
if (e.isIntersecting) {
sideLinks.forEach(l => l.classList.remove('active'));
const active = document.querySelector(`.sidebar-link[href="#${e.target.id}"]`);
if (active) active.classList.add('active');
}
});
}, { threshold: 0.3 });
sections.forEach(s => observer.observe(s));
</script>
<!-- FAQ Schema -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "FAQPage",
"mainEntity": [
{ "@type": "Question", "name": "What is NODUS?", "acceptedAnswer": { "@type": "Answer", "text": "NODUS is a browser extension that lets you save, organize and reuse AI responses with one click. It works with ChatGPT, Claude, Gemini, Perplexity, Grok, Copilot and DeepSeek. Everything is stored locally on your device." } },
{ "@type": "Question", "name": "How do I save a ChatGPT conversation?", "acceptedAnswer": { "@type": "Answer", "text": "With NODUS installed, open ChatGPT. NODUS buttons appear next to each response. Click Save to capture the question and response, or click Quick to save with a single click." } },
{ "@type": "Question", "name": "How do I save a Claude conversation?", "acceptedAnswer": { "@type": "Answer", "text": "NODUS works natively on Claude.ai. Capture buttons appear next to responses automatically. Click Save to capture the question and response to your local dashboard." } },
{ "@type": "Question", "name": "Does NODUS send my data to any server?", "acceptedAnswer": { "@type": "Answer", "text": "No. NODUS has no server of its own that receives your captures. Everything is stored in your browser's local storage. No capture ever leaves your device." } },
{ "@type": "Question", "name": "Is NODUS free?", "acceptedAnswer": { "@type": "Answer", "text": "Yes. The free plan includes saving, organizing, searching and exporting captures with no time limit. It is free forever. The PRO plan unlocks advanced features." } },
{ "@type": "Question", "name": "Which browsers are supported?", "acceptedAnswer": { "@type": "Answer", "text": "NODUS works in Chrome, Firefox, Edge and Brave. Any Chromium-based browser is compatible." } },
{ "@type": "Question", "name": "How do I export a ChatGPT conversation to Word?", "acceptedAnswer": { "@type": "Answer", "text": "Open your NODUS dashboard, select the capture and click Export → DOCX. The Word file is generated directly in your browser and saved to your computer." } },
{ "@type": "Question", "name": "What are Chains?", "acceptedAnswer": { "@type": "Answer", "text": "Chains let you connect captures from different conversations into a logical sequence, even from different platforms. You can connect captures from ChatGPT, Claude and Gemini in a single sequence and export everything together." } },
{ "@type": "Question", "name": "What happens to my data if I uninstall NODUS?", "acceptedAnswer": { "@type": "Answer", "text": "When you uninstall the extension, the local storage is deleted by the browser. Back up first in Settings → Export data to download all your captures as JSON." } },
{ "@type": "Question", "name": "Which AI platforms does NODUS work with?", "acceptedAnswer": { "@type": "Answer", "text": "NODUS supports 7 platforms: ChatGPT, Claude, Gemini, Perplexity, Grok, Microsoft Copilot and DeepSeek." } }
]
}
</script>
</body>
</html>