-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
934 lines (729 loc) · 51.1 KB
/
index.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
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
<!DOCTYPE html>
<!--
_ _ _ _ _ _ _
| |__ _____ __ | |_ ___ __ _ _ __ ___| |__ (_)_ _____ (_) |_ | |
| '_ \ / _ \ \ /\ / / | __/ _ \ / _` | '__/ __| '_ \| \ \ / / _ \ | | __| | |
| | | | (_) \ V V / | || (_) | | (_| | | | (__| | | | |\ V / __/ | | |_ |_|
|_| |_|\___/ \_/\_/ \__\___/ \__,_|_| \___|_| |_|_| \_/ \___| |_|\__| (_)
-->
<html lang="en">
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>How To Archive It</title>
<link rel="icon" href="favicon.ico">
<style>
@import url('https://fonts.googleapis.com/css2?family=Archivo:ital,wght@0,400;0,700;1,400;1,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Courier+Prime:ital,wght@0,400;0,700;1,400;1,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Averia+Serif+Libre:wght@300;400;700&display=swap');
body {
background-color: #FFFFFF;
font-family: 'Archivo', Arial, Helvetica, sans-serif;
color: #212529;
}
h1 {
color: #000000;
text-shadow: #DEE2E6 1px 1px 0.1px;
text-align: center;
font-family: 'Averia Serif Libre', cursive;
}
h2 {
color: #212529;
text-align: center;
background-color: #E9ECEF;
border-radius: 5px;
margin-left: auto;
margin-right: auto;
margin: 25px;
padding-top: 10px;
padding-bottom: 10px;
padding-left: 10px;
padding-right: 10px;
cursor: default;
}
h2.subtitle {
font-family: 'Averia Serif Libre', cursive;
}
h3 {
color: #343A40;
text-align: center;
}
a:link {
text-decoration: none;
color: #343A40;
font-weight: bold;
}
a:visited {
text-decoration: none;
color: #343A40;
}
a:hover {
text-decoration: none;
color: #6C757D;
}
a:active {
text-decoration: none;
color: #343A40;
}
.menubox{
background-color: #F8F9FA;
padding: 20px;
border-radius: 10px;
margin-top: 40px;
width: fit-content;
margin-left: auto;
margin-right: auto;
list-style-type: none;
text-align: center;
font-weight: bold;
display: grid;
grid-template-columns: auto auto auto;
}
.caticonamazon {
color: #ff9900;
}
.caticonandroid {
color: #a4c639;
}
.caticonapple {
color: #a6b1b7;
}
.caticonbluesky {
color: #017ef9;
}
.caticondeviantart {
color: #05cc47;
}
.caticondiscogs {
color: #313131;
}
.caticondiscord {
color: #5865f2;
}
.caticonfacebook {
color: #1877f2;
}
.caticonflickr{
color: #f40083;
}
.caticonfoursquare {
color: #f94877;
}
.caticongithub {
color: #161414;
}
.caticongoogle {
color: #4285f4;
}
.caticonifttt {
color: #222222;
}
.caticoninstagram {
color: #c32aa3;
}
.caticonlinkedin {
color: #0A66C2;
}
.caticonmastodon {
color: #2B90D9;
}
.caticonmedium {
color: #02B875;
}
.caticonmicrosoft {
color: #03a5f0;
}
.caticonoutlook {
color: #006ec4;
}
.caticonpinterest {
color: #bd081c;
}
.caticonreddit {
color: #FF4500;
}
.caticonsignal {
color: #3f78e7;
}
.caticonslack {
color: #4a154b;
}
.caticonsnapchat {
color: #fffc00;
}
.caticonspotify {
color: #1ED760;
}
.caticontelegram {
color: #0088cc;
}
.caticontumblr {
color: #35465D;
}
.caticontiktok {
color: #010101;
}
.caticontwitch {
color: #9146ff;
}
.caticontwitter {
color: #1da1f2;
}
.caticonubisoft {
color: #091225;
}
.caticonvimeo {
color: #1ab7ea;
}
.caticonvk {
color: #4A76A8;
}
.caticonwhatsapp {
color: #25d366;
}
.caticonyoutube {
color: #ff0000;
}
.menulink{
background-color: #DEE2E6;
border-radius: 5px;
margin: 2px;
padding-top: 2px;
padding-bottom: 2px;
padding-left: 20px;
padding-right: 20px;
}
.menulink:hover {
background-color: #E9ECEF;
}
.contentbox{
background-color: #F8F9FA;
padding-left: 60px;
padding-right: 60px;
padding-top: 3px;
padding-bottom: 20px;
border-radius: 10px;
margin-top: 40px;
margin-bottom: 40px;
width: 40%;
margin-left: auto;
margin-right: auto;
hyphens: auto;
}
.instructionscode {
font-family: 'Courier Prime', Courier New, serif;
text-align: center;
}
.backtothetop {
text-align: center;
font-weight: bold;
font-family: 'Averia Serif Libre', cursive;
}
</style>
<script src="https://kit.fontawesome.com/8d5f570144.js" crossorigin="anonymous"></script>
</head>
<body>
<!-- Title -->
<h1><a href="#">How To Archive It</a></h1>
<!-- Title -->
<!-- About -->
<div id="about" class="contentbox">
<h2 class="subtitle">About</h2>
<p>Have you asked yourself how to archive all the content you have published in
social websites and message services? Here there are a compilation of manuals
and instructions on how to preserve profiles on social media and messaging
services.</p>
<p>Please share your downloading stories using <a href="https://twitter.com/search?q=%23howtoarchiveit&f=live">#howtoarchiveit</a> on your platform of choice. If you have an improvement idea or suggestion, please write to <a href="mailto:[email protected]">[email protected]</a> or send a pull request to the <a href="https://github.com/howtoarchiveit/howtoarchiveit.github.io">repository</a>.</p>
</div>
<!-- /About -->
<!-- Menu -->
<div class="menubox">
<a href="#Amazon"><div class="menulink"><h3><i class="fab fa-brands fa-amazon caticonamazon"></i> Amazon</h3></div></a>
<a href="#Android"><div class="menulink"><h3><i class="fab fa-brands fa-android caticonandroid"></i> Android</h3></div></a>
<a href="#Apple"><div class="menulink"><h3><i class="fab fa-brands fa-apple caticonapple"></i> Apple</h3></div></a>
<a href="#Bluesky"><div class="menulink"><h3><i class="fab fa-brands fa-bluesky caticonbluesky"></i> Bluesky</h3></div></a>
<a href="#DeviantArt"><div class="menulink"><h3><i class="fab fa-brands fa-deviantart caticondeviantart"></i> DeviantArt</h3></div></a>
<a href="#Discogs"><div class="menulink"><h3><!--<i class="fab fa-brands fa-discogs caticondiscogs"></i>--> Discogs</h3></div></a>
<a href="#Discord"><div class="menulink"><h3><i class="fab fa-brands fa-discord caticondiscord"></i> Discord</h3></div></a>
<a href="#Facebook"><div class="menulink"><h3><i class="fab fa-brands fa-facebook caticonfacebook"></i> Facebook</h3></div></a>
<a href="#Flickr"><div class="menulink"><h3><i class="fab fa-brands fa-flickr caticonflickr"></i> Flickr</h3></div></a>
<a href="#Foursquare"><div class="menulink"><h3><i class="fab fa-brands fa-foursquare caticonfoursquare"></i> Foursquare</h3></div></a>
<a href="#GitHub"><div class="menulink"><h3><i class="fab fa-brands fa-github caticongithub"></i> GitHub</h3></div></a>
<a href="#Google"><div class="menulink"><h3><i class="fab fa-brands fa-google caticongoogle"></i> Google</h3></div></a>
<a href="#IFTTT"><div class="menulink"><h3><!--<i class="fab fa-brands fa-ifttt caticonifttt"></i>--> IFTTT</h3></div></a>
<a href="#Instagram"><div class="menulink"><h3><i class="fab fa-brands fa-instagram caticoninstagram"></i> Instagram</h3></div></a>
<a href="#LinkedIn"><div class="menulink"><h3><i class="fab fa-brands fa-linkedin caticonlinkedin"></i> Linkedin</h3></div></a>
<a href="#Mastodon"><div class="menulink"><h3><i class="fab fa-brands fa-mastodon caticonmastodon"></i> Mastodon</h3></div></a>
<a href="#Medium"><div class="menulink"><h3><i class="fab fa-brands fa-medium caticonmedium"></i> Medium</h3></div></a>
<a href="#Microsoft"><div class="menulink"><h3><i class="fab fa-brands fa-microsoft caticonmicrosoft"></i> Microsoft</h3></div></a>
<a href="#Outlook"><div class="menulink"><h3><!--<i class="fab fa-brands fa-outlook caticonoutlook"></i>--> Outlook</h3></div></a>
<a href="#Pinterest"><div class="menulink"><h3><i class="fab fa-brands fa-pinterest caticonpinterest"></i> Pinterest</h3></div></a>
<a href="#Reddit"><div class="menulink"><h3><i class="fab fa-brands fa-reddit caticonreddit"></i> Reddit</h3></div></a>
<a href="#Signal"><div class="menulink"><h3><i class="fab fa-brands fa-signal-messenger caticonsignal"></i> Signal</h3></div></a>
<a href="#Slack"><div class="menulink"><h3><i class="fab fa-brands fa-slack caticonslack"></i> Slack</h3></div></a>
<a href="#Snapchat"><div class="menulink"><h3><i class="fab fa-brands fa-snapchat caticonsnapchat"></i> Snapchat</h3></div></a>
<a href="#Spotify"><div class="menulink"><h3><i class="fab fa-brands fa-spotify caticonspotify"></i> Spotify</h3></div></a>
<a href="#Telegram"><div class="menulink"><h3><i class="fab fa-brands fa-telegram caticontelegram"></i> Telegram</h3></div></a>
<a href="#TikTok"><div class="menulink"><h3><i class="fab fa-brands fa-tiktok caticontiktok"></i> TikTok</h3></div></a>
<a href="#Tumblr"><div class="menulink"><h3><i class="fab fa-brands fa-tumblr caticontumblr"></i> Tumblr</h3></div></a>
<a href="#Twitch"><div class="menulink"><h3><i class="fab fa-brands fa-twitch caticontwitch"></i> Twitch</h3></div></a>
<a href="#Twitter"><div class="menulink"><h3><i class="fab fa-brands fa-twitter caticontwitter"></i> Twitter</h3></div></a>
<a href="#Ubisoft"><div class="menulink"><h3><!--<i class="fab fa-brands fa-ubisoft caticonubisoft"></i>--> Ubisoft</h3></div></a>
<a href="#Vimeo"><div class="menulink"><h3><i class="fab fa-brands fa-vimeo caticonvimeo"></i> Vimeo</h3></div></a>
<a href="#VK"><div class="menulink"><h3><i class="fab fa-brands fa-vk caticonvk"></i> VK</h3></div></a>
<a href="#WhatsApp"><div class="menulink"><h3><i class="fab fa-brands fa-whatsapp caticonwhatsapp"></i> WhatsApp</h3></div></a>
<a href="#YouTube"><div class="menulink"><h3><i class="fab fa-brands fa-youtube caticonyoutube"></i> YouTube</h3></div></a>
</div>
<!-- /Menu -->
<!-- Amazon -->
<div id="Amazon" class="contentbox">
<h2 title="Amazon"><i class="fab fa-brands fa-amazon caticonamazon"></i> Amazon</h2>
<p class="instructionscode">Go to <a href="https://amazon.com/gp/privacycentral/dsar/preview.html">Request My Data</a>. → Select the data you want to receive. → Click Submit Request when you're done. → Click the validation link in your confirmation email.</p>
<p>You can submit a data request in addition to accessing a lot of your personal information in Your Account. It takes 22 days to arrive since you made the request, and includes ZIP files with plain text files in CSV format: purchases made, returns, wish list, a list with the "markets" ("marketplaces") in which we have entered with any of our devices, devices in which we have used the Amazon account, Kindle related files,...</p>
<ul>
<li><a href="https://www.amazon.com/gp/help/customer/display.html?nodeId=GXPU3YPMBZQRWZK2">Request Your Personal Information - Amazon Customer Service</a></li>
<li><a href="https://www.xataka.com/privacidad/he-descargado-todo-que-amazon-sabe-mi-esto-que-me-he-encontrado">He descargado todo lo que Amazon sabe de mí y esto es lo que me he encontrado</a></li>
</ul>
<p class="backtothetop"><a href="#" title="Back to the privacy tools category menu"><br><i class="fas fa-angle-double-up"></i><br>Back to the top</a></p>
</div>
<!-- /Amazon -->
<!-- Android -->
<div id="Android" class="contentbox">
<h2 title="Android"><i class="fab fa-brands fa-android caticonandroid"></i> Android</h2>
<p class="instructionscode">Android: Open your phone’s Settings app. → Select Google And then Backup. → Tap Back up now.</p>
<p class="instructionscode">Google One: On your Android phone, open the Google One app Google One. → At the bottom, tap Storage. → Scroll to the device backup section. → To find your backup settings, tap Manage backup. → Tap Back up now.</p>
<p>You can back up content, data, and settings from your phone to your Google Account. Backups are uploaded to Google servers and they're encrypted with your Google Account password.</p>
<ul>
<li><a href="https://support.google.com/android/answer/2819582">Back up or restore data on your Android device - Android Help</a></li>
<li><a href="https://support.google.com/googleone/answer/9149304">Back up your device - Android - Google One Help</a></li>
</ul>
<p class="backtothetop"><a href="#" title="Back to the privacy tools category menu"><br><i class="fas fa-angle-double-up"></i><br>Back to the top</a></p>
</div>
<!-- /Android -->
<!-- Apple -->
<div id="Apple" class="contentbox">
<h2 title="Apple"><i class="fab fa-brands fa-apple caticonapple"></i> Apple</h2>
<p class="instructionscode"><a href="https://appleid.apple.com">Apple ID account page</a> → <a href="https://privacy.apple.com">Data & Privacy</a> → Manage Your Data and Privacy → Request a copy of your data → Complete request</p>
<p>By exporting your account to Apple, you can get Apple ID account and device information, Apple Media Services information, Apple Online and Retail Stores, Apple Pay activity, AppleCare, Game Center, Maps Report an Issue, Marketing communications, iCloud Bookmarks, Calendars, Reminders, Contacts, iCloud Drive, Mail, Notes, and Photos.</p>
<ul>
<li><a href="https://support.apple.com/en-us/HT208502">Get a copy of the data associated with your Apple ID account - Apple Support</a></li>
<li><a href="https://backupyoursh.it/guides/apple-music/">Apple Music - Backup Your Shit!</a></li>
<li><a href="https://support.apple.com/guide/music/save-a-copy-of-your-playlists-mus27cd5060f/mac">Save a copy of a playlist in Music on Mac - Apple Support</a></li>
<li><a href="https://backupyoursh.it/guides/apple/">Apple - Backup Your Shit!</a></li>
<li><a href="https://derechodelared.com/descargar-los-datos-que-apple-tiene/">Cómo descargar todos los datos que Apple tiene de ti</a></li>
</ul>
<p class="backtothetop"><a href="#" title="Back to the privacy tools category menu"><br><i class="fas fa-angle-double-up"></i><br>Back to the top</a></p>
</div>
<!-- /Apple -->
<!-- Bluesky -->
<div id="Bluesky" class="contentbox">
<h2 title="Bluesky"><i class="fab fa-brands fa-bluesky caticonbluesky"></i> Bluesky</h2>
<p class="instructionscode"><a href="https://bsky.app/settings">Settings</a> → <a href="https://bsky.app/settings/account">Account</a> → Export My Data</p>
<p>Bluesky lets you export your account repository, containing all public data records, can be downloaded as a "CAR" file. This file does not include media embeds, such as images, or your private data, which must be fetched separately.</p>
<ul>
<li><a href="https://docs.bsky.app/blog/repo-export">Download and Parse Repository Exports | Bluesky</a></li>
<li><a href="https://docs.bsky.app/docs/advanced-guides/firehose">Firehose | Bluesky</a></li>
<li><a href="https://eu.news-journalonline.com/story/news/2024/12/04/save-facebook-x-tiktok-other-social-media-content-heres-how/76738884007/">Save Facebook, X, TikTok, other social media content. Here's how - Daytona Beach News-Journal</a></li>
</ul>
<p class="backtothetop"><a href="#" title="Back to the privacy tools category menu"><br><i class="fas fa-angle-double-up"></i><br>Back to the top</a></p>
</div>
<!-- /Bluesky -->
<!-- DeviantArt -->
<div id="DeviantArt" class="contentbox">
<h2 title="DeviantArt"><i class="fab fa-brands fa-deviantart caticondeviantart"></i> DeviantArt</h2>
<!-- <p class="instructionscode"><a href="#">account page</a> → Complete request</p> -->
<p>You may not export all of your DeviantArt profile data, but you can download certain information and works that you have posted.</p>
<ul>
<li><a href="https://www.reddit.com/r/DataHoarder/comments/dimokr/way_to_download_all_of_my_deviantart_favorites/">Way to Download all of my DeviantArt favorites, while creating subfolders for my different "collection." : DataHoarder</a></li>
<li><a href="https://github.com/mikf/gallery-dl">mikf/gallery-dl: Command-line program to download image galleries and collections from several image hosting sites</a></li>
</ul>
<p class="backtothetop"><a href="#" title="Back to the privacy tools category menu"><br><i class="fas fa-angle-double-up"></i><br>Back to the top</a></p>
</div>
<!-- /DeviantArt -->
<!-- Discogs -->
<div id="Discogs" class="contentbox">
<h2 title="Discogs"><!--<i class="fab fa-brands fa-discogs caticondiscogs"></i>--> Discogs</h2>
<p class="instructionscode"><a href="https://www.discogs.com/my">Dashboard</a> → <a href="https://www.discogs.com/users/export">Export</a> → Request Data Export</p>
<p>At Discogs you can download your data from Collection, Contributions, Marketplace Inventory, Marketplace Order Items, Marketplace Orders, and Wantlist.</p>
<ul>
<li>
<a href="https://backupyoursh.it/guides/discogs/">Discogs - Backup Your Shit!</a></li>
<li><a href="https://support.discogs.com/hc/en-us/articles/360007521034-How-Can-I-Export-My-Entire-Inventory-">How Can I Export My Entire Inventory? – Discogs</a></li>
</ul>
<p class="backtothetop"><a href="#" title="Back to the privacy tools category menu"><br><i class="fas fa-angle-double-up"></i><br>Back to the top</a></p>
</div>
<!-- /Discogs -->
<!-- Discord -->
<div id="Discord" class="contentbox">
<h2 title="Discord"><i class="fab fa-brands fa-discord caticondiscord"></i> Discord</h2>
<!--<p class="instructionscode"><a href="#">Dashboard</a> → <a href="#">Export</a> → Request Data Export</p>-->
<p>You can't export chats and profile data from Discord, but you can download data with external software.</p>
<ul>
<li><a href="https://www.reddit.com/r/discordapp/comments/7anqjk/can_i_export_chat_logs_or_whats_best_for_my/">Can I export chat logs? Or what’s best for my situation. : discordapp</a></li>
<li><a href="https://support.discord.com/hc/en-us/community/posts/360035147072-Export-Entire-Chats">Export Entire Chats – Discord</a></li>
<li><a href="https://github.com/Tyrrrz/DiscordChatExporter">Tyrrrz/DiscordChatExporter: Exports Discord chat logs to a file</a></li>
</ul>
<p class="backtothetop"><a href="#" title="Back to the privacy tools category menu"><br><i class="fas fa-angle-double-up"></i><br>Back to the top</a></p>
</div>
<!-- /Discord -->
<!-- Facebook -->
<div id="Facebook" class="contentbox">
<h2 title="Facebook"><i class="fab fa-brands fa-facebook caticonfacebook"></i> Facebook</h2>
<p class="instructionscode"><a href="https://www.facebook.com/settings/">Settings</a> → <a href="https://www.facebook.com/settings?tab=your_facebook_information">Your Facebook Information</a> → <a href="https://www.facebook.com/dyi/">Download</a></p>
<p>With Facebook you have the option to download your own profile with posts and photos and videos. You can choose the file format, media quality and date range for your download. HTML format is easy to view while JSON format allows another service to more easily import the file. Media quality is the quality of your photos and videos but also affects file size.</p>
<ul>
<li><a href="https://www.docnow.io/workshops/social-control-2019/">Social Control 2019 Zine</a></li>
</ul>
<p class="backtothetop"><a href="#" title="Back to the privacy tools category menu"><br><i class="fas fa-angle-double-up"></i><br>Back to the top</a></p>
</div>
<!-- /Facebook -->
<!-- Flickr -->
<div id="Flickr" class="contentbox">
<h2 title="Flickr"><i class="fab fa-brands fa-flickr caticonflickr"></i> Flickr</h2>
<p class="instructionscode"><a href="https://www.flickr.com/account">Account settings</a> → Your Flickr Data → Request my Flickr data</p>
<p>On your Flickr account page in the area "Your Flickr Data", you are able to request all of your data.</p>
<ul>
<li><a href="https://mikelieser.medium.com/5-ways-to-download-all-of-your-original-flickr-photos-and-albums-3e31fb4f9221">5 ways to download all of your original Flickr photos and albums | by Mike Lieser | Medium</a></li>
<li><a href="https://www.macworld.com/article/229389/how-to-download-your-flickr-photo-library-and-transfer-it-to-google-photos-or-icloud-photo-library.html">How to download your Flickr photo library and transfer it to Google Photos or iCloud Photo library</a></li>
<li><a href="https://www.theverge.com/2019/1/16/18174035/how-to-download-your-photos-from-flickr">How to download your photos from Flickr - The Verge</a></li>
</ul>
<p class="backtothetop"><a href="#" title="Back to the privacy tools category menu"><br><i class="fas fa-angle-double-up"></i><br>Back to the top</a></p>
</div>
<!-- /Flickr -->
<!-- Foursquare -->
<div id="Foursquare" class="contentbox">
<h2 title="Foursquare"><i class="fab fa-brands fa-foursquare caticonfoursquare"></i> Foursquare</h2>
<p class="instructionscode"><a href="https://foursquare.com/settings/privacy">Privacy Settings</a> → Export My Data</p>
<p>Export your Foursquare profile data, with checkins and photos.</p>
<ul>
<li><a href="https://www.quora.com/Is-it-possible-to-export-my-location-history-from-Foursquare">Is it possible to export my location history from Foursquare? - Quora</a></li>
<li><a href="https://aaronparecki.com/2021/07/03/5/export-foursquare-checkin-history">How to export your complete Foursquare checkin history • Aaron Parecki</a></li>
<li><a href="https://github.com/aaronpk/Swarm-Checkins-Import">aaronpk/Swarm-Checkins-Import: Import your Foursquare/Swarm checkins to your Micropub-enabled website</a></li>
<li><a href="Data https://lifehacker.com/why-you-should-delete-your-ancient-foursquare-data-1837615177">Why You Should Delete Your (Ancient) Foursquare</a></li>
</ul>
<p class="backtothetop"><a href="#" title="Back to the privacy tools category menu"><br><i class="fas fa-angle-double-up"></i><br>Back to the top</a></p>
</div>
<!-- /Foursquare -->
<!-- GitHub -->
<div id="GitHub" class="contentbox">
<h2 title="GitHub"><i class="fab fa-brands fa-github caticongithub"></i> GitHub</h2>
<p class="instructionscode"><a href="https://github.com/settings/profile">Settings</a> → <a href="https://github.com/settings/admin">Account</a> → Export account data</p>
<p>In GitHub you will be able to download all your commit comments, images included in issues, issues, issue comments, issue events (i.e. "labeled", "opened", "closed"), milestones, projects, pull Requests, pull request reviews, releases, repositories, users (who have contributed to the repositories).</p>
<ul>
<li><a href="https://backupyoursh.it/guides/github/">GitHub - Backup Your Shit!</a></li>
<li><a href="https://docs.github.com/en/github/understanding-how-github-uses-and-protects-your-data/requesting-an-archive-of-your-personal-accounts-data">Requesting an archive of your personal account’s data - GitHub Docs</a></li>
</ul>
<p class="backtothetop"><a href="#" title="Back to the privacy tools category menu"><br><i class="fas fa-angle-double-up"></i><br>Back to the top</a></p>
</div>
<!-- /GitHub -->
<!-- Google -->
<div id="Google" class="contentbox">
<h2 title="Google"><i class="fab fa-brands fa-google caticongoogle"></i> Google</h2>
<p class="instructionscode"><a href="https://myaccount.google.com">Google Account</a> → <a href="https://myaccount.google.com/data-and-personalization">Data & personalisation</a> → <a href="https://takeout.google.com">Google Takeout</a></p>
<p>Export a copy of content in your Google Account to back it up or use it with a service outside of Google.</p>
<p class="backtothetop"><a href="#" title="Back to the privacy tools category menu"><br><i class="fas fa-angle-double-up"></i><br>Back to the top</a></p>
</div>
<!-- /Google -->
<!-- IFTTT -->
<div id="IFTTT" class="contentbox">
<h2 title="IFTTT"><i class="fab fa-brands fa-ifttt caticonifttt"></i> IFTTT</h2>
<p class="instructionscode"><a href="https://ifttt.com/settings">Account</a> -> Control your data -> Export my data</p>
<p>Export your IFTTT data in a machine readable format.</p>
<ul>
<li><a href="https://ifttt.com/terms">Privacy policy - IFTTT</a></li>
</ul>
<p class="backtothetop"><a href="#" title="Back to the privacy tools category menu"><br><i class="fas fa-angle-double-up"></i><br>Back to the top</a></p>
</div>
<!-- /IFTTT -->
<!-- Instagram -->
<div id="Instagram" class="contentbox">
<h2 title="Instagram"><i class="fab fa-brands fa-instagram caticoninstagram"></i> Instagram</h2>
<p class="instructionscode"><a href="https://www.instagram.com/accounts/edit/">Settings</a> → <a href="https://www.instagram.com/accounts/privacy_and_security/">Privacy and Security</a> → Data Download → <a href="https://www.instagram.com/download/request/">Request Download</a></p>
<p>They will email you a link to a file with your information. You can receive it in HTML, which may be easier to view, or JSON, which may be easier to import to another service.</p>
<ul>
<li><a href="https://www.docnow.io/workshops/social-control-2019/">Social Control 2019 Zine</a></li>
<li><a href="https://backupyoursh.it/guides/instagram/">Instagram - Backup Your Shit!</a></li>
<li><a href="https://help.instagram.com/181231772500920">How do I access or review my data on Instagram? | Instagram Help Centre</a></li>
</ul>
<p class="backtothetop"><a href="#" title="Back to the privacy tools category menu"><br><i class="fas fa-angle-double-up"></i><br>Back to the top</a></p>
</div>
<!-- /Instagram -->
<!-- LinkedIn -->
<div id="LinkedIn" class="contentbox">
<h2 title="LinkedIn"><i class="fab fa-brands fa-linkedin caticonlinkedin"></i> LinkedIn</h2>
<p class="instructionscode">Me icon → <a href="https://www.linkedin.com/psettings/">Settings & Privacy</a> → <a href="https://www.linkedin.com/psettings/member-data">Get a copy of your data</a> → Request archive</p>
<p>LinkedIn provides a very easy way to export your data from the site: companies you follow, Connections, education history, groups, job history, phone numbers, private messages, professional certifications, registration IP, school honors, your emails addresses.</p>
<ul>
<li><a href="https://www.linkedin.com/help/linkedin/answer/50191/downloading-your-account-data">Downloading Your Account Data | LinkedIn Help</a></li>
<li><a href="https://www.linkedin.com/help/linkedin/answer/4281/save-a-profile-as-a-pdf">Save a Profile as a PDF | LinkedIn Help</a></li>
<li><a href="https://www.linkedin.com/help/linkedin/answer/95768/export-your-linkedin-page-analytics-report">Export Your LinkedIn Page Analytics Report | LinkedIn Help</a></li>
<li><a href="https://backupyoursh.it/guides/linkedin/">LinkedIn - Backup Your Shit!</a></li>
</ul>
<p class="backtothetop"><a href="#" title="Back to the privacy tools category menu"><br><i class="fas fa-angle-double-up"></i><br>Back to the top</a></p>
</div>
<!-- /LinkedIn -->
<!-- Mastodon -->
<div id="Mastodon" class="contentbox">
<h2 title="Mastodon"><i class="fab fa-brands fa-mastodon caticonmastodon"></i> Mastodon</h2>
<p class="instructionscode"><a href="https://mastodon.social/settings/preferences">Preferences</a> → <a href="https://mastodon.social/settings/export">Import and export</a> → REQUEST YOUR ARCHIVE</p>
<p>At any time you want, you can download from Mastodon a CSV file for your current followed accounts, your currently created lists, your currently blocked accounts, your currently muted accounts, and your currently blocked domains.</p>
<ul>
<li><a href="https://docs.joinmastodon.org/user/moving/#export">Moving or leaving accounts - Mastodon documentation</a></li>
</ul>
<p class="backtothetop"><a href="#" title="Back to the privacy tools category menu"><br><i class="fas fa-angle-double-up"></i><br>Back to the top</a></p>
</div>
<!-- /Mastodon -->
<!-- Medium -->
<div id="Medium" class="contentbox">
<h2 title="Medium"><i class="fab fa-brands fa-medium caticonmedium"></i> Medium</h2>
<p class="instructionscode"><a href="https://medium.com/me/settings">Settings</a> → Account → Download your information → Download .zip</p>
<p>Medium gives you the ability to export your personal data and stories as HTML files in a .zip archive.</p>
<ul>
<li><a href="https://help.medium.com/hc/en-us/articles/115004745787-Export-your-account-data">Export your account data – Help Center</a></li>
<li><a href="https://medium.com/blogging-guide/daily-medium-hack-15-downloading-and-backing-up-your-medium-articles-ac413d20ded4">Backing up Your Medium Articles. Backing up your Medium article’s on a… | by Casey Botticello | Blogging Guide | Medium</a></li>
</ul>
<p class="backtothetop"><a href="#" title="Back to the privacy tools category menu"><br><i class="fas fa-angle-double-up"></i><br>Back to the top</a></p>
</div>
<!-- /Medium -->
<!-- Microsoft -->
<div id="Microsoft" class="contentbox">
<h2 title="Microsoft"><i class="fab fa-brands fa-microsoft caticonmicrosoft"></i> Microsoft</h2>
<p class="instructionscode">Login to <a href="https://account.microsoft.com">account.microsoft.com</a> → Click "Privacy" → Click "Download your data" → Click "Create new archive"</p>
<p>Microsoft lets you download an archive of all the data you've created across its services, such as search, browsing and location history, in JSON file format.</p>
<ul>
<li><a href="https://www.onmsft.com/how-to/how-to-download-an-archive-of-your-microsoft-account-data">How to download an archive of your Microsoft account data - OnMSFT.com</a></li>
</ul>
<p class="backtothetop"><a href="#" title="Back to the privacy tools category menu"><br><i class="fas fa-angle-double-up"></i><br>Back to the top</a></p>
</div>
<!-- /Microsoft -->
<!-- Outlook -->
<div id="Outlook" class="contentbox">
<h2 title="Outlook"><!--<i class="fab fa-brands fa-outlook caticonoutlook"></i>--> Outlook</h2>
<p class="instructionscode">Settings → General → Privacy and data → <a href="http://outlook.live.com/mail/options/general/export">Export mailbox</a></p>
<p>Outlook stores all your email, calendar and contacts in your mailbox and you can request a copy of your mailbox at any time. This process may take to four days to complete. When your copy i ready, you'll receive an email with a link to download the content from your mailbox.</p>
<ul>
<li><a href="https://www.onmsft.com/how-to/how-to-download-an-archive-of-your-microsoft-account-data">How to download an archive of your Microsoft account data - OnMSFT.com</a></li>
</ul>
<p class="backtothetop"><a href="#" title="Back to the privacy tools category menu"><br><i class="fas fa-angle-double-up"></i><br>Back to the top</a></p>
</div>
<!-- /Outlook -->
<!-- Pinterest -->
<div id="Pinterest" class="contentbox">
<h2 title="Pinterest"><i class="fab fa-brands fa-pinterest caticonpinterest"></i> Pinterest</h2>
<p>Pinterest doesn't offer a way of downloading your boards. But you can use a tool like Conifer (previously Webrecorder.io) to create a web archive.</p>
<ul>
<li><a href="https://natlib.govt.nz/blog/posts/saving-your-social-media">Saving your Social Media | National Library of New Zealand</a></li>
</ul>
<p class="backtothetop"><a href="#" title="Back to the privacy tools category menu"><br><i class="fas fa-angle-double-up"></i><br>Back to the top</a></p>
</div>
<!-- /Pinterest -->
<!-- Reddit -->
<div id="Reddit" class="contentbox">
<h2 title="Reddit"><i class="fab fa-brands fa-reddit caticonreddit"></i> Reddit</h2>
<p class="instructionscode"><a href="https://www.reddit.com/settings/data-request">Request your Reddit data</a></p>
<p>You can request a copy of data Reddit has about your Reddit account, selecting the type of request is it (General Data Protection Regulation (GDPR) or California Consumer Privacy Act (CCPA) or other) and specifying data range.
</p>
<ul>
<li><a href="https://reddit.zendesk.com/hc/en-us/articles/360043048352-How-do-I-request-a-copy-of-my-Reddit-data-and-information-">How do I request a copy of my Reddit data and information? – Reddit Help</a></li>
<li><a href="https://www.reddit.com/r/DataHoarder/comments/hxmbw6/how_do_i_backup_my_reddit_account_and_export_all/">How do I backup my Reddit account and export all my comments, saved posts, etc.? : DataHoarder</a></li>
<li><a href="https://github.com/shadowmoose/RedditDownloader">shadowmoose/RedditDownloader: Scrapes Reddit to download media of your choice.</a></li>
<li><a href="https://www.reddit.com/r/DataHoarder/comments/d0hjs7/reddit_takeout_export_your_account_data_as_json/">Reddit takeout: export your account data as JSON: comments, submissions, upvotes, etc. : DataHoarder</a></li>
<li><a href="https://github.com/karlicoss/rexport">karlicoss/rexport: Reddit takeout: export your account data as JSON: comments, submissions, upvotes etc. 🦖</a></li>
</ul>
<p class="backtothetop"><a href="#" title="Back to the privacy tools category menu"><br><i class="fas fa-angle-double-up"></i><br>Back to the top</a></p>
</div>
<!-- /Reddit -->
<!-- Signal -->
<div id="Signal" class="contentbox">
<h2 title="Signal"><i class="fab fa-brands fa-signal-messenger caticonsignal"></i> Signal</h2>
<p class="instructionscode">Settings → Chats and media → TURN ON</p>
<p>Using backups can store Signal messages, pictures, files, and other contents locally on your device, or can use it to move your local Signal data between mobile phone devices.</p>
<ul>
<li><a href="https://www.businessinsider.in/tech/apps/how-to/how-to-backup-and-restore-messages-in-signal-app/articleshow/80226649.cms">How to backup and restore messages in Signal app | Business Insider India</a></li>
<li><a href="https://support.signal.org/hc/en-us/articles/360007059752-Backup-and-Restore-Messages">Backup and Restore Messages – Signal Support</a></li>
</ul>
<p class="backtothetop"><a href="#" title="Back to the privacy tools category menu"><br><i class="fas fa-angle-double-up"></i><br>Back to the top</a></p>
</div>
<!-- /Signal -->
<!-- Slack -->
<div id="Slack" class="contentbox">
<h2 title="Slack"><i class="fab fa-brands fa-slack caticonslack"></i> Slack</h2>
<p class="instructionscode">Request to export all conversations: Select Settings & administration from the menu → Workspace settings → Import/Export Data → Export → submit an application</p>
<p class="instructionscode">Export your workspace data: Settings & administration → Workspace settings → Import/Export Data → Export tab → Export date range, open the drop-down menu to select an option → Start Export → We'll send you an email once your export file is ready → Open the email and click Visit your workspace's export page → Click Ready for download to access the zip file</p>
<p>With Slack data exports, owners and admins can export data from their workspace or Enterprise Grid organization. Once an application is submitted, our Support team will review it within a couple of business days. The zip file will contain your workspace’s message history in JSON format and file links from all public channels.</p>
<ul>
<li><a href="https://slack.com/help/articles/1500001548241-Request-to-export-all-conversations">Request to export all conversations | Slack</a></li>
<li><a href="https://slack.com/help/articles/201658943-Export-your-workspace-data">Export your workspace data | Slack</a></li>
</ul>
<p class="backtothetop"><a href="#" title="Back to the privacy tools category menu"><br><i class="fas fa-angle-double-up"></i><br>Back to the top</a></p>
</div>
<!-- /Signal -->
<!-- Snapchat -->
<div id="Snapchat" class="contentbox">
<h2 title="Snapchat"><i class="fab fa-brands fa-snapchat caticonsnapchat"></i> Snapchat</h2>
<p class="instructionscode"><a href="http://accounts.snapchat.com">Manage My Account</a> → My Data → Submit Request</p>
<p>Snapchat collects certain information from their users, like phone number and email address. Also collect information about how they use the services, like which Snaps have submitted to Spotlight and Snap Map.</p>
<ul>
<li><a href="https://support.snapchat.com/en-us/a/download-my-data">Download My Data • Snapchat Support</a></li>
<li><a href="https://www.docnow.io/workshops/social-control-2019/">Social Control 2019 Zine</a></li>
</ul>
<p class="backtothetop"><a href="#" title="Back to the privacy tools category menu"><br><i class="fas fa-angle-double-up"></i><br>Back to the top</a></p>
</div>
<!-- /Snapchat -->
<!-- Spotify -->
<div id="Spotify" class="contentbox">
<h2 title="Spotify"><i class="fab fa-brands fa-spotify caticonspotify"></i> Spotify</h2>
<!--<p class="instructionscode"><a href="#">Manage My Account</a> → My Data → Submit Request</p>-->
<p>Using Spotify API and external software and 3rd party apps, it is possible to export only lists of songs in playlists and render them in CSV format.</p>
<ul>
<li><a href="https://backupyoursh.it/guides/spotify/">Spotify - Backup Your Shit!</a></li>
<li><a href="https://exportify.net">Exportify</a></li>
</ul>
<p class="backtothetop"><a href="#" title="Back to the privacy tools category menu"><br><i class="fas fa-angle-double-up"></i><br>Back to the top</a></p>
</div>
<!-- /Spotify -->
<!-- Telegram -->
<div id="Telegram" class="contentbox">
<h2 title="Telegram"><i class="fab fa-brands fa-telegram caticontelegram"></i> Telegram</h2>
<p class="instructionscode"><a href="https://desktop.telegram.org">Telegram Desktop</a> → Settings → Advanced → Export Telegram data</p>
<p>Telegram brings an easy way to save conversations on your disk. In just a few taps, you can export some (or all) of your chats, including photos and other media they contain. As a result you’ll get all your data accessible offline in JSON-format or in beautifully formatted HTML. To use this feature, make sure you have the latest version of Telegram Desktop installed on your computer, then click Settings > Export Telegram data. This tool will be particularly useful for users who have millions of messages and can’t easily access the oldest parts of their messaging history.</p>
<ul>
<li><a href="https://telegram.org/blog/export-and-more">Chat Export Tool, Better Notifications and More</a></li>
<li><a href="https://www.reddit.com/r/Telegram/comments/piuhht/can_you_download_your_own_database_of_chats/hbs97tm/">can you download your own database of chats, channels, groups and bots? : Telegram</a></li>
<li><a href="https://www.gadgetsnow.com/how-to/how-to-export-chats-media-account-details-from-telegram-a-step-by-step-guide/articleshow/80928597.cms">How to export chats, media, account details from Telegram: A step-by-step guide</a></li>
<li><a href="https://www.bellingcat.com/resources/how-tos/2022/03/08/how-to-archive-telegram-content-to-document-russias-invasion-of-ukraine/">How to Archive Telegram Content to Document Russia's Invasion of Ukraine - bellingcat</a></li>
</ul>
<p class="backtothetop"><a href="#" title="Back to the privacy tools category menu"><br><i class="fas fa-angle-double-up"></i><br>Back to the top</a></p>
</div>
<!-- /Telegram -->
<!-- TikTok -->
<div id="TikTok" class="contentbox">
<h2 title="TikTok"><i class="fab fa-brands fa-tiktok caticontiktok"></i> TikTok</h2>
<p class="instructionscode">Privacy → Personalize and data → Download TikTok Data</p>
<p>There is no setting available to automatically save all of the TikToks you post, but you have the option to save each video manually after you've posted it. Exported data can be downloaded in TXT format for an easy-to-read text file or JSON for a file you can import elsewhere.</p>
<ul>
<li><a href="https://support.tiktok.com/en/account-and-privacy/personalized-ads-and-data/requesting-your-data">Requesting your data | TikTok Help Center</a></li>
<li><a href="https://backlightblog.com/download-video-from-tiktok">How to download TikTok videos, even without the watermark</a></li>
<li><a href="https://www.makeuseof.com/how-to-download-your-tiktok-data/">How to Download All of the Data TikTok Has About You</a></li>
</ul>
<p class="backtothetop"><a href="#" title="Back to the privacy tools category menu"><br><i class="fas fa-angle-double-up"></i><br>Back to the top</a></p>
</div>
<!-- /TikTok -->
<!-- Tumblr -->
<div id="Tumblr" class="contentbox">
<h2 title="Tumblr"><i class="fab fa-brands fa-tumblr caticontumblr"></i> Tumblr</h2>
<p class="instructionscode">Account → <a href="https://www.tumblr.com/settings/account">Settings</a> → Select the blog you’d like to export on the right side of the page → Export → Export [blog name]</p>
<p>You can export all of the content you’ve created for your Tumblr blog, and package it up into a convenient ZIP file for you to download, with active times, ads served, API applications, browser info, dashboard posts, email ads surveys, highlighted posts, most important tags, push notification history, and user interests.</p>
<ul>
<li><a href="https://tumblr.zendesk.com/hc/en-us/articles/360005118894-Export-Your-Blog">Export Your Blog – Help Center</a></li>
<li><a href="https://backupyoursh.it/guides/tumblr-privacy/">Tumblr - Privacy Data - Backup Your Shit!</a></li>
<li><a href="https://www.reddit.com/r/DataHoarder/comments/a4kjyd/tools_for_archiving_a_tumblr_site/">Tools for archiving a Tumblr site : DataHoarder</a></li>
</ul>
<p class="backtothetop"><a href="#" title="Back to the privacy tools category menu"><br><i class="fas fa-angle-double-up"></i><br>Back to the top</a></p>
</div>
<!-- /Tumblr -->
<!-- Twitch -->
<div id="Twitch" class="contentbox">
<h2 title="Twitch"><i class="fab fa-brands fa-twitch caticontwitch"></i> Twitch</h2>
<p class="instructionscode"><a href="https://www.twitch.tv/">Log in to Twitch</a> and select Settings from your dashboard. → Check the box next to Store Past Broadcasts under Stream Preferences.</p>
<p>Twitch offers users the option of automatically storing their content at the time of posting, but depending on your membership level, you can archive your videos for a fixed period of time after broadcast.Woth a free user account you can archive your Twitch videos for 14 days, and if you are Twitch Prime user you cant archive your videos for up to 60 days, and also you can download your videos.</p>
<ul>
<li><a href="https://www.alphr.com/archive-broadcasts-twitch/">How To Archive Your Broadcasts in Twitch</a></li>
<li><a href="https://natlib.govt.nz/blog/posts/saving-your-social-media">Saving your Social Media | National Library of New Zealand</a></li>
</ul>
<p class="backtothetop"><a href="#" title="Back to the privacy tools category menu"><br><i class="fas fa-angle-double-up"></i><br>Back to the top</a></p>
</div>
<!-- /Twitch -->
<!-- Twitter -->
<div id="Twitter" class="contentbox">
<h2 title="Twitter"><i class="fab fa-brands fa-twitter caticontwitter"></i> Twitter</h2>
<p class="instructionscode"><a href="https://twitter.com/settings/account">Settings and privacy</a> → <a href="https://twitter.com/settings/download_your_data">Download an archive of your data</a> → Request archive</p>
<p>Reviewing your Twitter data can give you insights into the type of information stored for your account. It provides an easy way for you to view details about your account, and to make changes as you see fit. You can request a ZIP file with an archive of your account information, account history, apps and devices, account activity, interests, and Ads data. You’ll get an in-app notification when the archive of your data is ready to download.</p>
<ul>
<li><a href="https://www.docnow.io/workshops/social-control-2019/">Social Control 2019 Zine</a></li>
<li><a href="https://help.twitter.com/en/managing-your-account/accessing-your-twitter-data">How to access and download your Twitter data | Twitter Help</a></li>
<li><a href="https://news.docnow.io/introducing-docnow-1-0-12ebc0011cdf">Introducing DocNow 1.0. Documenting the Now announces the… | by Zakiya Collier | Apr, 2022 | Documenting DocNow</a></li>
<li><a href="https://community.docnow.io">DocNow</a></li>
<li><a href="https://github.com/agusnieto77/TweetScraperR">agusnieto77/TweetScraperR: Este paquete proporciona funciones para extraer datos de X/Twitter, incluidos tweets, usuarixs y metadatos asociados sin necesidad de usar API. || This package provides functions to extract X/Twitter data, including tweets, usuarixs and associated met</a></li>
</ul>
<p class="backtothetop"><a href="#" title="Back to the privacy tools category menu"><br><i class="fas fa-angle-double-up"></i><br>Back to the top</a></p>
</div>
<!-- /Twitter -->
<!-- Ubisoft -->
<div id="Ubisoft" class="contentbox">
<h2 title="Ubisoft"><!--<i class="fab fa-brands fa-ubisoft caticonubisoft"></i>--> Ubisoft</h2>
<p class="instructionscode">Once logged → navigate to the <a href="http://account.ubisoft.com/privacy-and-communication">Privacy and Communication</a> page → Select Request a copy from the Download your information section → Sign into the email address associated with your Ubisoft Account, and keep an eye out for an email from us letting you know your data is ready (it can take up to 24 hours for it to arrive in your inbox) → Click on the link provided within the email to be taken back to the <a href="https://account.ubisoft.com">Account Management</a> site → Navigate to the Privacy and Communication page → Select Download from the Download your information section</p>
<p>Your data will be downloaded in the form of CSV files. And if you wish to access more data than what is included in the extract you downloaded, can <a href="https://support.ubisoft.com/en-US/Cases/New?game=50003&platform=29&category=389&hidefields=all&gf=1&af=1">submit</a> a Data Access Request. </p>
<ul>
<li><a href="https://www.ubisoft.com/en-us/help/account/article/reviewing-the-data-that-ubisoft-holds-about-me/000063467">Reviewing the data that Ubisoft holds about me | Ubisoft Help</a></li>
</ul>
<p class="backtothetop"><a href="#" title="Back to the privacy tools category menu"><br><i class="fas fa-angle-double-up"></i><br>Back to the top</a></p>
</div>
<!-- /Ubisoft -->
<!-- Vimeo -->
<div id="Vimeo" class="contentbox">
<h2 title="Vimeo"><i class="fab fa-brands fa-vimeo caticonvimeo"></i> Vimeo</h2>
<p>In Vimeo you can download your videos individually, but there is no official option to download an entire channel. Only paid members have the ability to store their original, unencoded source files on Vimeo as file storage.</p>
<ul>
<li><a href="https://natlib.govt.nz/blog/posts/saving-your-social-media">Saving your Social Media | National Library of New Zealand</a></li>
</ul>
<p class="backtothetop"><a href="#" title="Back to the privacy tools category menu"><br><i class="fas fa-angle-double-up"></i><br>Back to the top</a></p>
</div>
<!-- /Vimeo -->
<!-- VK -->
<div id="VK" class="contentbox">
<h2 title="VK"><i class="fab fa-brands fa-vk caticonvk"></i> VK</h2>
<p class="instructionscode"><a href="https://vk.com/data_protection?section=rules">Data Management Rules</a> → Download Your Information → <a href="https://vk.com/data_protection?section=requests">Processing Requests</a></p>
<p>You can download a copy of your VK data and can be requested with the GDPR. VK data copy will be provided as a ZIP file, and divided the information into different categories: photos you liked, money transfer history or a range of your interests which are used to provide targeted advertising.</p>
<ul>
<li><a href="https://vk.com/data_protection">VK Data Protection</a></li>
</ul>
<p class="backtothetop"><a href="#" title="Back to the privacy tools category menu"><br><i class="fas fa-angle-double-up"></i><br>Back to the top</a></p>
</div>
<!-- /VK -->
<!-- WhatsApp -->
<div id="WhatsApp" class="contentbox">
<h2 title="WhatsApp"><i class="fab fa-brands fa-whatsapp caticonwhatsapp"></i> WhatsApp</h2>
<p class="instructionscode">Back up account info: WhatsApp Settings → Account → Request account info → Request report → (wait three days) → WhatsApp Settings → Account → Request account info → Download report → Export report → EXPORT or Export Report<br>
Back up chats: WhatsApp → More options → Settings → Chats → Chat backup → BACK UP<br>
Export chat history: Open the individual or group chat → More options → More → Export chat</p>
<p>Your account info report will typically be available three days after the date you requested it. You can refer to the Ready by date while waiting for your report. When the report is available to download, you'll receive a WhatsApp notification on your phone, stating "Your account info report is now available".</p>
<p>WhatsApp chats are automatically backed up and saved daily to your phone's memory. Depending on your settings, you can also periodically back up your WhatsApp chats to Google Drive. But if you want an offline copy of all the chats and don't to lose any of your messages, can manually back up your chats.</p>
<ul>
<li><a href="https://faq.whatsapp.com/android/chats/how-to-save-your-chat-history/">WhatsApp Help Center - How to save your chat history </a></li>
<li><a href="https://www.xatakandroid.com/tutoriales/como-guardar-chat-entero-whatsapp-sus-imagenes-stickers-demas">Cómo guardar un chat entero de WhatsApp con sus imágenes, stickers y demás</a></li>
<li><a href="https://blog.witness.org/2018/12/export-content-whatsapp/">How to export content from WhatsApp - WITNESS Blog</a></li>
<li><a href="https://faq.whatsapp.com/general/account-and-profile/how-to-request-your-account-information/">WhatsApp Help Center - How to request your account information</a></li>
<li><a href="https://derechodelared.com/whatsapp-datos-usuario/">Cómo descargar todos los datos que WhatsApp tiene sobre ti.</a></li>
</ul>
<p class="backtothetop"><a href="#" title="Back to the privacy tools category menu"><br><i class="fas fa-angle-double-up"></i><br>Back to the top</a></p>
</div>
<!-- /WhatsApp -->
<!-- YouTube -->
<div id="YouTube" class="contentbox">
<h2 title="YouTube"><i class="fab fa-brands fa-youtube caticonyoutube"></i> YouTube</h2>
<p class="instructionscode"><a href="https://myaccount.google.com">Google Account</a> → <a href="https://myaccount.google.com/data-and-personalization">Data & personalisation</a> → <a href="https://takeout.google.com">Google Takeout</a></p>
<p>Export a copy of content in your Google Account to back it up or use it with a service outside of Google.</p>
<ul>
<li><a href="https://www.genbeta.com/a-fondo/asi-es-youtube-dl-un-software-libre-para-bajar-videos-de-youtube-o-facebook-desde-la-linea-de-comandos">Así es YouTube-dl, un sencillo programa libre para bajar vídeos de casi cualquier web con la línea de comandos</a></li>
<li><a href="https://citizenevidence.org/2019/12/10/the-only-tool-you-need-to-preserve-video-from-virtually-any-online-source/">The Only Tool You Need to Preserve Video from Virtually Any Online Source – Citizen Evidence Lab – Amnesty International</a></li>
</ul>
<p class="backtothetop"><a href="#" title="Back to the privacy tools category menu"><br><i class="fas fa-angle-double-up"></i><br>Back to the top</a></p>
</div>
<!-- /YouTube -->
<!-- Credits -->
<div class="contentbox" id="creditsbox">
<h2 class="subtitle">Credits</h2>
<ul>
<li>Created by: <a href="https://github.com/aniol">Aniol</a></li>
<li>Desing inspired in: <a href="https://www.privacytools.io">Privacy Tools: Encryption Against Mass Surveillance</a></li>
<li>Social icons from: <a href="https://fontawesome.com/kits">Your Kits | Font Awesome</a></li>
<li>Recommended website: <a href="https://backupyoursh.it/">Backup Your Shit!</a></li>
<li>Colors of each social media service: <a href="https://www.lockedownseo.com/social-media-colors/">Social Media Colors for 2022: HEX Codes, RGB, SASS</a></li>
<li>Contact: <a href="mailto:[email protected]">[email protected]</a></li>
</ul>
<p class="backtothetop"><a href="#" title="Back to the privacy tools category menu"><br><i class="fas fa-angle-double-up"></i><br>Back to the top</a></p>
</div>
<!-- /Credits -->
</body>
</html>