forked from justdeleteme/justdelete.me
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
2105 lines (2083 loc) · 203 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
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
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE HTML>
<html>
<head>
<title>Just Delete Me | A directory of direct links to delete your account from web services.</title>
<meta charset="UTF-8">
<!--[if lt IE 9]>
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<meta name="viewport" content="width=device-width,initial-scale=1">
<meta name="description" content="A directory of direct links to delete your account from web services. Find out how to delete your Facebook, Twitter, LinkedIn accounts and more.">
<!-- Icons -->
<link rel="shortcut icon" href="inc/icons/favicon.ico">
<link rel="apple-touch-icon-precomposed" href="inc/icons/apple-touch-icon-precomposed.png">
<link rel="apple-touch-icon-precomposed" href="inc/icons/apple-touch-icon-72x72-precomposed.png">
<link rel="apple-touch-icon-precomposed" href="inc/icons/apple-touch-icon-120x120-precomposed.png">
<link rel="apple-touch-icon-precomposed" href="inc/icons/apple-touch-icon-144x144-precomposed.png">
<link rel="stylesheet" type="text/css" href="style.css" />
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
<script>window.jQuery || document.write('<script src="inc/jquery.js"><\/script>')</script>
<script src="inc/scripts.js"></script>
<link type="text/css" rel="stylesheet" href="inc/jquery.dropdown.css" />
<script type="text/javascript" src="inc/jquery.dropdown.js"></script>
<script type="text/javascript">
var GoSquared = {};
GoSquared.acct = "GSN-106715-K";
(function(w){
function gs(){
w._gstc_lt = +new Date;
var d = document, g = d.createElement("script");
g.type = "text/javascript";
g.src = "//d1l6p2sc9645hc.cloudfront.net/tracker.js";
var s = d.getElementsByTagName("script")[0];
s.parentNode.insertBefore(g, s);
}
w.addEventListener ?
w.addEventListener("load", gs, false) :
w.attachEvent("onload", gs);
})(window);
</script>
</head>
<body>
<!-- Facebook Like Button SDK -->
<div id="fb-root"></div>
<nav>
<!-- begin language switcher -->
<span class="language-switch" href="#" data-dropdown="#dropdown-1" id="en">English</span>
<!-- end language switcher -->
<a href="#" class="info">About</a>
<a href="#" class="banner">Chrome Extension</a>
<a target="_blank" href="https://docs.google.com/a/therobb.com/forms/d/1mhr3vaTni5U8PvOdp_NvQ6vKBxNTmJTeKP3VWRuioCE/viewform">Submit a site</a>
<a target="_blank" href="https://github.com/rmlewisuk/justdelete.me">Fork on GitHub</a>
</nav>
<header>
<h1>just<span>delete</span>.me</h1>
<p class="tagline">A directory of direct links to delete your account from web services.</p>
</header>
<div id="test">
</div>
<div class="search">
<div class="search-container">
<input type="text" id="search">
<a href="#">search</a>
</div>
</div>
<section class="main">
<section class="sites" id="sites">
<p class="no-results">Can't find what you're looking for? <a href='https://github.com/rmlewisuk/justdelete.me'>Help make justdelete.me better</a>.</p>
<!-- // FIRST FOR EACH -->
<section class="site-block easy">
<a class="site-header" href="http://www.4shared.com/web/account/settings#overview">
4shared </a>
<p class="site-difficulty">
difficulty: easy </p>
<p class="tooltip-toggle">No Info Available</p>
</section><section class="site-block easy">
<a class="site-header" href="https://500px.com/settings">
500px </a>
<p class="site-difficulty">
difficulty: easy </p>
<p class="tooltip-toggle">No Info Available</p>
</section><section class="site-block easy">
<a class="site-header" href="https://9gag.com/member/delete">
9GAG </a>
<p class="site-difficulty">
difficulty: easy </p>
<div class="tooltip-content">
Login to your account, go to parameters, click Delete my account. Confirm by clicking I want to delete my account. And again by clicking Delete my 9GAG account.
</div>
<a href="#" class="tooltip-toggle contains-info">show info...</a>
</section><section class="site-block easy">
<a class="site-header" href="http://abload.de/settings.php">
Abload </a>
<p class="site-difficulty">
difficulty: easy </p>
<p class="tooltip-toggle">No Info Available</p>
</section><section class="site-block easy">
<a class="site-header" href="https://about.me/account">
About.me </a>
<p class="site-difficulty">
difficulty: easy </p>
<p class="tooltip-toggle">No Info Available</p>
</section><section class="site-block hard">
<a class="site-header" href="https://learn.adobe.com/wiki/display/wel/Delete+your+account">
Adobe </a>
<p class="site-difficulty">
difficulty: hard </p>
<div class="tooltip-content">
You have to call them in order to delete your account. Alternatively, you can send them an email.
</div>
<a href="#" class="tooltip-toggle contains-info">show info...</a>
</section><section class="site-block easy">
<a class="site-header" href="https://www.airbnb.com/users/settings">
Airbnb </a>
<p class="site-difficulty">
difficulty: easy </p>
<p class="tooltip-toggle">No Info Available</p>
</section><section class="site-block hard">
<a class="site-header" href="https://www.amazon.com/gp/help/customer/contact-us/ref=cu_cf_email?ie=UTF8&mode=email#a">
Amazon </a>
<p class="site-difficulty">
difficulty: hard </p>
<div class="tooltip-content">
To close your account, contact Amazon by email (via this contact form) and request that your account be closed.
</div>
<a href="#" class="tooltip-toggle contains-info">show info...</a>
</section><section class="site-block impossible">
<a class="site-header" href="http://www.animalcrossingcommunity.com/help_main.asp?HelpSectionID=5#Topic201">
Animal Crossing Community </a>
<p class="site-difficulty">
difficulty: impossible </p>
<div class="tooltip-content">
We do not 'delete' or 'terminate' accounts on ACC. If you no longer wish to use the site, you may delete all personal information from your profile and then stop logging in.
</div>
<a href="#" class="tooltip-toggle contains-info">show info...</a>
</section><section class="site-block easy">
<a class="site-header" href="http://cancel.aol.com">
AOL / Instant Messenger </a>
<p class="site-difficulty">
difficulty: easy </p>
<p class="tooltip-toggle">No Info Available</p>
</section><section class="site-block easy">
<a class="site-header" href="https://account.app.net/settings/delete/">
App.net </a>
<p class="site-difficulty">
difficulty: easy </p>
<p class="tooltip-toggle">No Info Available</p>
</section><section class="site-block easy">
<a class="site-header" href="http://artsy.net/user/delete">
Artsy </a>
<p class="site-difficulty">
difficulty: easy </p>
<p class="tooltip-toggle">No Info Available</p>
</section><section class="site-block hard">
<a class="site-header" href="http://ask.fm/feedbacks/new">
Ask.fm </a>
<p class="site-difficulty">
difficulty: hard </p>
<div class="tooltip-content">
Request deletion from customer services.
</div>
<a href="#" class="tooltip-toggle contains-info">show info...</a>
</section><section class="site-block easy">
<a class="site-header" href="https://www.assembla.com/user/edit/edit_account_settings">
Assembla </a>
<p class="site-difficulty">
difficulty: easy </p>
<p class="tooltip-toggle">No Info Available</p>
</section><section class="site-block easy">
<a class="site-header" href="https://bambuser.com/settings">
Bambuser </a>
<p class="site-difficulty">
difficulty: easy </p>
<div class="tooltip-content">
Go to your Settings page and scroll down to find 'Deactivate' account. Click on 'Close Account' button, and confirm the account deletion.
</div>
<a href="#" class="tooltip-toggle contains-info">show info...</a>
</section><section class="site-block hard">
<a class="site-header" href="https://eu.battle.net/support/en/ticket/submit">
Battle.net </a>
<p class="site-difficulty">
difficulty: hard </p>
<div class="tooltip-content">
Customer Support will require you to send a signed written letter confirming your wishes, your account details and a copy of legal identification (passport, drivers license) to your account region's office headquarters.
</div>
<a href="#" class="tooltip-toggle contains-info">show info...</a>
</section><section class="site-block easy">
<a class="site-header" href="https://ssl.bbc.co.uk/id/settings/delete">
BBC iD </a>
<p class="site-difficulty">
difficulty: easy </p>
<p class="tooltip-toggle">No Info Available</p>
</section><section class="site-block easy">
<a class="site-header" href="https://bitbucket.org/account/">
Bitbucket </a>
<p class="site-difficulty">
difficulty: easy </p>
<div class="tooltip-content">
On the side menu, click on 'Delete Account' and on the confirmation page click 'Delete Account', all repositories and the account is immediately wiped.
</div>
<a href="#" class="tooltip-toggle contains-info">show info...</a>
</section><section class="site-block impossible">
<a class="site-header" href="http://support.bitly.com/knowledgebase/articles/105373-how-do-i-delete-my-account-">
bitly </a>
<p class="site-difficulty">
difficulty: impossible </p>
<div class="tooltip-content">
The best you can do is archive all of your links. Go to the link you want to archive and click the 'x' in the upper right of the shortlink to archive the link. You can also make all of your shortlinks private.
</div>
<a href="#" class="tooltip-toggle contains-info">show info...</a>
</section><section class="site-block impossible">
<a class="site-header" href="https://support.google.com/blogger/answer/41932">
Blogger </a>
<p class="site-difficulty">
difficulty: impossible </p>
<div class="tooltip-content">
You can't delete your Blogger Account without deleting your entire Google Account. But you can delete your blog.
</div>
<a href="#" class="tooltip-toggle contains-info">show info...</a>
</section><section class="site-block easy">
<a class="site-header" href="www.blueapron.com/cancel_subscription">
Blue Apron </a>
<p class="site-difficulty">
difficulty: easy </p>
<p class="tooltip-toggle">No Info Available</p>
</section><section class="site-block impossible">
<a class="site-header" href="http://www.bodybuilding.com/store/help/delete-bodyspace-account.htm">
BodyBuilding </a>
<p class="site-difficulty">
difficulty: impossible </p>
<div class="tooltip-content">
You can only deactivate your account by contacting support as they state on the help page. There is no way to permanently delete your account or data, and an inactive public profile will always be visible to public.
</div>
<a href="#" class="tooltip-toggle contains-info">show info...</a>
</section><section class="site-block easy">
<a class="site-header" href="https://app.box.com/settings">
Box </a>
<p class="site-difficulty">
difficulty: easy </p>
<p class="tooltip-toggle">No Info Available</p>
</section><section class="site-block easy">
<a class="site-header" href="http://bbx.boxee.tv/user/delete">
Boxee </a>
<p class="site-difficulty">
difficulty: easy </p>
<p class="tooltip-toggle">No Info Available</p>
</section><section class="site-block easy">
<a class="site-header" href="http://www.ress.at/profil/profil_entfernen.php">
C&M News by Rеss.at </a>
<p class="site-difficulty">
difficulty: easy </p>
<div class="tooltip-content">
Just click 'Abschicken'
</div>
<a href="#" class="tooltip-toggle contains-info">show info...</a>
</section><section class="site-block easy">
<a class="site-header" href="https://www.change.org/account_settings">
Change.org </a>
<p class="site-difficulty">
difficulty: easy </p>
<p class="tooltip-toggle">No Info Available</p>
</section><section class="site-block easy">
<a class="site-header" href="https://4id.channel4.com/account/remove">
Channel 4 </a>
<p class="site-difficulty">
difficulty: easy </p>
<p class="tooltip-toggle">No Info Available</p>
</section><section class="site-block easy">
<a class="site-header" href="http://my.cl.ly/account/delete">
CloudApp </a>
<p class="site-difficulty">
difficulty: easy </p>
<p class="tooltip-toggle">No Info Available</p>
</section><section class="site-block easy">
<a class="site-header" href="https://cloudmagic.com/a/v2/preferences">
CloudMagic </a>
<p class="site-difficulty">
difficulty: easy </p>
<p class="tooltip-toggle">No Info Available</p>
</section><section class="site-block impossible">
<a class="site-header" href="https://cne.coderedweb.com">
Code Red </a>
<p class="site-difficulty">
difficulty: impossible </p>
<div class="tooltip-content">
You can't delete yourself. You can only change your phone nr. to a bogus number.
</div>
<a href="#" class="tooltip-toggle contains-info">show info...</a>
</section><section class="site-block medium">
<a class="site-header" href="http://help.codeschool.com/kb/codeschool-faqs/account-questions">
Code School </a>
<p class="site-difficulty">
difficulty: medium </p>
<div class="tooltip-content">
Start a private discussion with them and they will 'take care of it'.
</div>
<a href="#" class="tooltip-toggle contains-info">show info...</a>
</section><section class="site-block hard">
<a class="site-header" href="http://help.codecademy.com/customer/portal/articles/416872">
Codecademy </a>
<p class="site-difficulty">
difficulty: hard </p>
<div class="tooltip-content">
For security reasons, we will need to verify that these requests have come from the email address that's on your Codecademy account.
</div>
<a href="#" class="tooltip-toggle contains-info">show info...</a>
</section><section class="site-block easy">
<a class="site-header" href="http://blog.codepen.io/documentation/faq/how-do-i-delete-my-account/">
Codepen </a>
<p class="site-difficulty">
difficulty: easy </p>
<p class="tooltip-toggle">No Info Available</p>
</section><section class="site-block hard">
<a class="site-header" href="https://twitter.com/coderwall/status/250670074741022720">
Coderwall </a>
<p class="site-difficulty">
difficulty: hard </p>
<div class="tooltip-content">
E-mail [email protected] with username and ask for account deletion.<br><a href="mailto:[email protected]?Subject=Account%20Deletion%20Request&body=Please%20delete%20my%20account,%20my%20username%20is%20 XXXXXX">Send email »</a>
</div>
<a href="#" class="tooltip-toggle contains-info">show info...</a>
</section><section class="site-block impossible">
<a class="site-header" href="https://www.couchsurfing.org/delete_profile.html?delete=1">
Couchsurfing </a>
<p class="site-difficulty">
difficulty: impossible </p>
<div class="tooltip-content">
Cannot be deleted fully, reactivation is always available. Fill out the form and select 'I understand. Please delete my profile.'.
</div>
<a href="#" class="tooltip-toggle contains-info">show info...</a>
</section><section class="site-block hard">
<a class="site-header" href="https://www.coursera.org/about/contact">
Coursera </a>
<p class="site-difficulty">
difficulty: hard </p>
<div class="tooltip-content">
Contact support and request they delete your account.
</div>
<a href="#" class="tooltip-toggle contains-info">show info...</a>
</section><section class="site-block hard">
<a class="site-header" href="http://www.craigslist.org/about/help/user_accounts">
Craigslist </a>
<p class="site-difficulty">
difficulty: hard </p>
<div class="tooltip-content">
Send an email to [email protected] and request deletion.<br><a href="mailto:[email protected]?Subject=Account%20Deletion%20Request&body=Please%20delete%20my%20account,%20my%20username%20is%20 XXXXXX">Send email »</a>
</div>
<a href="#" class="tooltip-toggle contains-info">show info...</a>
</section><section class="site-block easy">
<a class="site-header" href="http://www.dailymile.com/account/settings/edit">
Daily Mile </a>
<p class="site-difficulty">
difficulty: easy </p>
<div class="tooltip-content">
Edit your account and select 'Remove my account'.
</div>
<a href="#" class="tooltip-toggle contains-info">show info...</a>
</section><section class="site-block impossible">
<a class="site-header" href="http://legal.kinja.com/kinja-terms-of-use-90161644">
Deadspin (Gawker Media) </a>
<p class="site-difficulty">
difficulty: impossible </p>
<div class="tooltip-content">
You may discontinue your use of the Service at any time without informing us. We may, however, retain and continue to use any Content that you have submitted or uploaded through the Service.
</div>
<a href="#" class="tooltip-toggle contains-info">show info...</a>
</section><section class="site-block easy">
<a class="site-header" href="https://delicious.com/settings/deactivate">
Delicious </a>
<p class="site-difficulty">
difficulty: easy </p>
<p class="tooltip-toggle">No Info Available</p>
</section><section class="site-block easy">
<a class="site-header" href="http://desktop.ly/settings">
Desktoply </a>
<p class="site-difficulty">
difficulty: easy </p>
<p class="tooltip-toggle">No Info Available</p>
</section><section class="site-block easy">
<a class="site-header" href="https://www.desktoppr.co/settings">
Desktoppr </a>
<p class="site-difficulty">
difficulty: easy </p>
<p class="tooltip-toggle">No Info Available</p>
</section><section class="site-block easy">
<a class="site-header" href="https://www.deviantart.com/settings/deactivation">
DeviantArt </a>
<p class="site-difficulty">
difficulty: easy </p>
<div class="tooltip-content">
All your data is ereased immediately. Accounts can be reactivated within 30 days. After that, Accounts can't be reactivated.
</div>
<a href="#" class="tooltip-toggle contains-info">show info...</a>
</section><section class="site-block impossible">
<a class="site-header" href="https://www.paket.de/pkp/appmanager/pkp/desktop?_nfpb=true&_nfxr=false&_pageLabel=pkp_portal_page_footer_cah_faqs">
DHL (Paket.de) </a>
<p class="site-difficulty">
difficulty: impossible </p>
<div class="tooltip-content">
There's no information about account-deletion in their FAQ. The hotline also says that account-deletion isn't possible.
</div>
<a href="#" class="tooltip-toggle contains-info">show info...</a>
</section><section class="site-block easy">
<a class="site-header" href="https://diasp.eu/user/edit#close_account_pane">
Diaspora </a>
<p class="site-difficulty">
difficulty: easy </p>
<div class="tooltip-content">
Click close my account and confirm with your password.
</div>
<a href="#" class="tooltip-toggle contains-info">show info...</a>
</section><section class="site-block hard">
<a class="site-header" href="http://digg.com/contact">
Digg </a>
<p class="site-difficulty">
difficulty: hard </p>
<div class="tooltip-content">
Contact Digg’s customer support and request for your account to be closed.
</div>
<a href="#" class="tooltip-toggle contains-info">show info...</a>
</section><section class="site-block easy">
<a class="site-header" href="http://disqus.com/pages/dashboard/#account">
Disqus </a>
<p class="site-difficulty">
difficulty: easy </p>
<p class="tooltip-toggle">No Info Available</p>
</section><section class="site-block easy">
<a class="site-header" href="https://draftin.com/draft/users/edit">
Draft </a>
<p class="site-difficulty">
difficulty: easy </p>
<p class="tooltip-toggle">No Info Available</p>
</section><section class="site-block easy">
<a class="site-header" href="http://dribbble.com/account">
Dribbble </a>
<p class="site-difficulty">
difficulty: easy </p>
<p class="tooltip-toggle">No Info Available</p>
</section><section class="site-block easy">
<a class="site-header" href="https://www.dropbox.com/account/delete">
Dropbox </a>
<p class="site-difficulty">
difficulty: easy </p>
<p class="tooltip-toggle">No Info Available</p>
</section><section class="site-block easy">
<a class="site-header" href="https://droplr.com/settings">
Droplr </a>
<p class="site-difficulty">
difficulty: easy </p>
<p class="tooltip-toggle">No Info Available</p>
</section><section class="site-block hard">
<a class="site-header" href="http://support.dropmark.com/customer/portal/questions/564826-deleting-my-account">
Dropmark </a>
<p class="site-difficulty">
difficulty: hard </p>
<p class="tooltip-toggle">No Info Available</p>
</section><section class="site-block easy">
<a class="site-header" href="http://www.duolingo.com/settings/deactivate">
Duolingo </a>
<p class="site-difficulty">
difficulty: easy </p>
<p class="tooltip-toggle">No Info Available</p>
</section><section class="site-block hard">
<a class="site-header" href="http://help.dwolla.com/customer/portal/articles/269223-how-can-i-delete-my-dwolla-account-">
Dwolla </a>
<p class="site-difficulty">
difficulty: hard </p>
<div class="tooltip-content">
All accounts stay in their system for at least 3 years. Remove any banking information before you delete.
</div>
<a href="#" class="tooltip-toggle contains-info">show info...</a>
</section><section class="site-block hard">
<a class="site-header" href="https://help.ea.com/en/contact-us/ask">
EA Origin </a>
<p class="site-difficulty">
difficulty: hard </p>
<div class="tooltip-content">
Contact customer services to request deletion. If you're outside the US this must be by phone.
</div>
<a href="#" class="tooltip-toggle contains-info">show info...</a>
</section><section class="site-block easy">
<a class="site-header" href="http://cgi1.ebay.com/ws/eBayISAPI.dll?CloseAccount">
eBay </a>
<p class="site-difficulty">
difficulty: easy </p>
<div class="tooltip-content">
A few survey questions will be asked prior to account deletion.
</div>
<a href="#" class="tooltip-toggle contains-info">show info...</a>
</section><section class="site-block impossible">
<a class="site-header" href="https://www.edx.org/student-faq">
EdX </a>
<p class="site-difficulty">
difficulty: impossible </p>
<div class="tooltip-content">
There's no need to delete your account. An old, unused edX account with no course completions associated with it will disappear.
</div>
<a href="#" class="tooltip-toggle contains-info">show info...</a>
</section><section class="site-block hard">
<a class="site-header" href="http://www.etsy.com/help/article/53">
Etsy </a>
<p class="site-difficulty">
difficulty: hard </p>
<div class="tooltip-content">
You can't have any unpaid Etsy bills or an open non-delivery reports. Your email address will remain on file.
</div>
<a href="#" class="tooltip-toggle contains-info">show info...</a>
</section><section class="site-block easy">
<a class="site-header" href="https://www.eventbrite.com/account-close">
Eventbrite </a>
<p class="site-difficulty">
difficulty: easy </p>
<p class="tooltip-toggle">No Info Available</p>
</section><section class="site-block impossible">
<a class="site-header" href="https://www.evernote.com/Deactivate.action">
Evernote </a>
<p class="site-difficulty">
difficulty: impossible </p>
<div class="tooltip-content">
You cannot delete your Evernote account, just deactivate it temporarily. Deactivation does not remove your data so you will have to manually delete all notes and personal info, perform a sync and then deactivate the account.
</div>
<a href="#" class="tooltip-toggle contains-info">show info...</a>
</section><section class="site-block medium">
<a class="site-header" href="https://www.facebook.com/help/delete_account?rdrhc">
Facebook </a>
<p class="site-difficulty">
difficulty: medium </p>
<div class="tooltip-content">
While you can delete your account easily, some of the datas including chat- or group-messages are here to stay forever, just as stated in the website's Privacy.
</div>
<a href="#" class="tooltip-toggle contains-info">show info...</a>
</section><section class="site-block hard">
<a class="site-header" href="https://getsatisfaction.com/feedly/topics/how_do_i_delete_my_feedly_account">
Feedly </a>
<p class="site-difficulty">
difficulty: hard </p>
<div class="tooltip-content">
Email customer support to request deletion.
</div>
<a href="#" class="tooltip-toggle contains-info">show info...</a>
</section><section class="site-block medium">
<a class="site-header" href="https://finanzblick.de/webapp">
Finanzblick </a>
<p class="site-difficulty">
difficulty: medium </p>
<div class="tooltip-content">
Click on your username (top left) → click on 'Profileinstellungen' → 'Account löschen'. All data is fully erased.
</div>
<a href="#" class="tooltip-toggle contains-info">show info...</a>
</section><section class="site-block easy">
<a class="site-header" href="https://www.fitocracy.com/account/deletion/">
Fitocracy </a>
<p class="site-difficulty">
difficulty: easy </p>
<p class="tooltip-toggle">No Info Available</p>
</section><section class="site-block easy">
<a class="site-header" href="http://www.flickr.com/profile_delete.gne">
Flickr </a>
<p class="site-difficulty">
difficulty: easy </p>
<p class="tooltip-toggle">No Info Available</p>
</section><section class="site-block easy">
<a class="site-header" href="https://flipboard.com/support/">
Flipboard </a>
<p class="site-difficulty">
difficulty: easy </p>
<div class="tooltip-content">
Go to account management within the app
</div>
<a href="#" class="tooltip-toggle contains-info">show info...</a>
</section><section class="site-block medium">
<a class="site-header" href="http://www.fotka.pl/ustawienia/konto_usun">
Forka </a>
<p class="site-difficulty">
difficulty: medium </p>
<div class="tooltip-content">
To delete your account, you must not post anything for at least three days.
</div>
<a href="#" class="tooltip-toggle contains-info">show info...</a>
</section><section class="site-block easy">
<a class="site-header" href="http://forrst.com/settings">
Forrst </a>
<p class="site-difficulty">
difficulty: easy </p>
<p class="tooltip-toggle">No Info Available</p>
</section><section class="site-block easy">
<a class="site-header" href="https://foursquare.com/delete_me">
Foursquare </a>
<p class="site-difficulty">
difficulty: easy </p>
<p class="tooltip-toggle">No Info Available</p>
</section><section class="site-block hard">
<a class="site-header" href="http://www.freelancer.com/report/contact.php">
Freelancer </a>
<p class="site-difficulty">
difficulty: hard </p>
<div class="tooltip-content">
Make sure your account balance is positive, then issue a support ticket requesting to close your account.
</div>
<a href="#" class="tooltip-toggle contains-info">show info...</a>
</section><section class="site-block easy">
<a class="site-header" href="https://ezcrypt.it/ML4n#ej6rorotmsxq7jF8ViyGjTVh">
Freenode </a>
<p class="site-difficulty">
difficulty: easy </p>
<div class="tooltip-content">
/msg NickServ DROP nick password
</div>
<a href="#" class="tooltip-toggle contains-info">show info...</a>
</section><section class="site-block easy">
<a class="site-header" href="https://friendfeed.com/account/delete">
FriendFeed </a>
<p class="site-difficulty">
difficulty: easy </p>
<p class="tooltip-toggle">No Info Available</p>
</section><section class="site-block hard">
<a class="site-header" href="https://gamespot.custhelp.com/app/ask">
Gamespot </a>
<p class="site-difficulty">
difficulty: hard </p>
<div class="tooltip-content">
Account deletion requires contacting Customer Support.
</div>
<a href="#" class="tooltip-toggle contains-info">show info...</a>
</section><section class="site-block impossible">
<a class="site-header" href="http://get.gaug.es/tos/">
Gauges </a>
<p class="site-difficulty">
difficulty: impossible </p>
<div class="tooltip-content">
If you wish to terminate your Gauges account, you may simply discontinue using Gauges.
</div>
<a href="#" class="tooltip-toggle contains-info">show info...</a>
</section><section class="site-block impossible">
<a class="site-header" href="http://legal.kinja.com/kinja-terms-of-use-90161644">
Gawker (Gawker Media) </a>
<p class="site-difficulty">
difficulty: impossible </p>
<div class="tooltip-content">
You may discontinue your use of the Service at any time without informing us. We may, however, retain and continue to use any Content that you have submitted or uploaded through the Service.
</div>
<a href="#" class="tooltip-toggle contains-info">show info...</a>
</section><section class="site-block medium">
<a class="site-header" href="http://www.geni.com/account_settings">
Geni </a>
<p class="site-difficulty">
difficulty: medium </p>
<div class="tooltip-content">
Delete any of the information you would like removed from the site. Then select 'Account Settings' and 'Close Account'
</div>
<a href="#" class="tooltip-toggle contains-info">show info...</a>
</section><section class="site-block medium">
<a class="site-header" href="http://support.groundspeak.com/index.php?pg=kb.page&id=102">
Geocaching </a>
<p class="site-difficulty">
difficulty: medium </p>
<div class="tooltip-content">
You must email support from the registered email to remove this account. Any outstanding Premium Memberships will not be refunded
</div>
<a href="#" class="tooltip-toggle contains-info">show info...</a>
</section><section class="site-block easy">
<a class="site-header" href="https://github.com/settings/admin">
GitHub </a>
<p class="site-difficulty">
difficulty: easy </p>
<p class="tooltip-toggle">No Info Available</p>
</section><section class="site-block easy">
<a class="site-header" href="https://gitorious.org">
Gitorious </a>
<p class="site-difficulty">
difficulty: easy </p>
<p class="tooltip-toggle">No Info Available</p>
</section><section class="site-block impossible">
<a class="site-header" href="http://legal.kinja.com/kinja-terms-of-use-90161644">
Gizmodo (Gawker Media) </a>
<p class="site-difficulty">
difficulty: impossible </p>
<div class="tooltip-content">
You may discontinue your use of the Service at any time without informing us. We may, however, retain and continue to use any Content that you have submitted or uploaded through the Service.
</div>
<a href="#" class="tooltip-toggle contains-info">show info...</a>
</section><section class="site-block hard">
<a class="site-header" href="http://glassboard.com/support/">
Glassboard </a>
<p class="site-difficulty">
difficulty: hard </p>
<div class="tooltip-content">
Use the support email address to ask them to close your account.<br><a href="mailto:[email protected]?Subject=Account%20Deletion%20Request&body=Please%20delete%20my%20account,%20my%20username%20is%20 XXXXXX">Send email »</a>
</div>
<a href="#" class="tooltip-toggle contains-info">show info...</a>
</section><section class="site-block hard">
<a class="site-header" href="http://www.glassdoor.com/about/contact_input.htm?opt=cc">
Glassdoor </a>
<p class="site-difficulty">
difficulty: hard </p>
<div class="tooltip-content">
Contact customer services and request deletion.
</div>
<a href="#" class="tooltip-toggle contains-info">show info...</a>
</section><section class="site-block impossible">
<a class="site-header" href="http://www.gmx.net/">
GMX </a>
<p class="site-difficulty">
difficulty: impossible </p>
<div class="tooltip-content">
You can't delete your account, but you can deactivate it. (Start → Mein Account → Account stilllegen)
</div>
<a href="#" class="tooltip-toggle contains-info">show info...</a>
</section><section class="site-block impossible">
<a class="site-header" href="http://support.godaddy.com/groups/go-daddy-customers/forum/topic/how-do-i-delete-my-account-with-godaddy/">
GoDaddy </a>
<p class="site-difficulty">
difficulty: impossible </p>
<div class="tooltip-content">
GoDaddy Accounts are apparently retained “to comply with [their] legal obligations” though you are able to clear out most of your information by editing your profile.
</div>
<a href="#" class="tooltip-toggle contains-info">show info...</a>
</section><section class="site-block easy">
<a class="site-header" href="http://goodnoows.com">
Good Noows </a>
<p class="site-difficulty">
difficulty: easy </p>
<div class="tooltip-content">
On the top bar, click on 'Your name', then click on the 'Delete Account' button at the bottom of the dialog.
</div>
<a href="#" class="tooltip-toggle contains-info">show info...</a>
</section><section class="site-block easy">
<a class="site-header" href="http://www.goodreads.com/user/destroy">
Goodreads </a>
<p class="site-difficulty">
difficulty: easy </p>
<p class="tooltip-toggle">No Info Available</p>
</section><section class="site-block easy">
<a class="site-header" href="https://www.google.com/accounts/Login">
Google </a>
<p class="site-difficulty">
difficulty: easy </p>
<p class="tooltip-toggle">No Info Available</p>
</section><section class="site-block easy">
<a class="site-header" href="http://www.gopetition.com/">
GoPetition </a>
<p class="site-difficulty">
difficulty: easy </p>
<div class="tooltip-content">
Select a reason for closing and it'll take 2 clicks.
</div>
<a href="#" class="tooltip-toggle contains-info">show info...</a>
</section><section class="site-block easy">
<a class="site-header" href="https://www.gosquared.com/home/account/close">
GoSquared </a>
<p class="site-difficulty">
difficulty: easy </p>
<div class="tooltip-content">
Select a reason for closing and it'll take 2 clicks.
</div>
<a href="#" class="tooltip-toggle contains-info">show info...</a>
</section><section class="site-block easy">
<a class="site-header" href="https://ed.grammarly.com/accounts/me">
Grammarly </a>
<p class="site-difficulty">
difficulty: easy </p>
<p class="tooltip-toggle">No Info Available</p>
</section><section class="site-block impossible">
<a class="site-header" href="http://gravatar.com">
Gravatar </a>
<p class="site-difficulty">
difficulty: impossible </p>
<div class="tooltip-content">
You can't delete your Gravatar Account without deleting your entire WordPress Account.
</div>
<a href="#" class="tooltip-toggle contains-info">show info...</a>
</section><section class="site-block medium">
<a class="site-header" href="http://help.grindr.com/entries/21377499-All-Devices-Clear-Your-Grindr-Profile">
Grindr </a>
<p class="site-difficulty">
difficulty: medium </p>
<div class="tooltip-content">
You can remove your profile and chat history from within the app or you can email support with your UDID.
</div>
<a href="#" class="tooltip-toggle contains-info">show info...</a>
</section><section class="site-block easy">
<a class="site-header" href="http://grooveshark.com/#!/settings/account">
Grooveshark </a>
<p class="site-difficulty">
difficulty: easy </p>
<p class="tooltip-toggle">No Info Available</p>
</section><section class="site-block hard">
<a class="site-header" href="https://gumroad.com/">
Gumroad </a>
<p class="site-difficulty">
difficulty: hard </p>
<div class="tooltip-content">
No page explaining how to delete your account. You have to contact support directly (link at the bottom of the page) and they'll do it for you.
</div>
<a href="#" class="tooltip-toggle contains-info">show info...</a>
</section><section class="site-block easy">
<a class="site-header" href="https://my.gumtree.com/manage/details/deactivate">
Gumtree </a>
<p class="site-difficulty">
difficulty: easy </p>
<p class="tooltip-toggle">No Info Available</p>
</section><section class="site-block impossible">
<a class="site-header" href="http://jacquesmattheij.com/The+Unofficial+HN+FAQ#deleteaccount">
Hacker News </a>
<p class="site-difficulty">
difficulty: impossible </p>
<div class="tooltip-content">
Your contributions are there to stay, but you can at least clear out your profile -- even your email address.
</div>
<a href="#" class="tooltip-toggle contains-info">show info...</a>
</section><section class="site-block easy">
<a class="site-header" href="https://dashboard.heroku.com/account">
Heroku </a>
<p class="site-difficulty">
difficulty: easy </p>
<div class="tooltip-content">
“Close your account...” link at the bottom of the page.
</div>
<a href="#" class="tooltip-toggle contains-info">show info...</a>
</section><section class="site-block easy">
<a class="site-header" href="http://www.hi5.com/account_cancel.html">
Hi5 </a>
<p class="site-difficulty">
difficulty: easy </p>
<p class="tooltip-toggle">No Info Available</p>
</section><section class="site-block impossible">
<a class="site-header" href="http://hol.org.uk/profile.php?view=quithol">
HOL Virtual Hogwarts </a>
<p class="site-difficulty">
difficulty: impossible </p>
<div class="tooltip-content">
You can remove information and manually quit HOL, but your account stays forever.
</div>
<a href="#" class="tooltip-toggle contains-info">show info...</a>
</section><section class="site-block easy">
<a class="site-header" href="https://account.live.com/CloseAccount.aspx">
Hotmail </a>
<p class="site-difficulty">
difficulty: easy </p>
<p class="tooltip-toggle">No Info Available</p>
</section><section class="site-block easy">
<a class="site-header" href="https://secure.hulu.com/users/delete">
Hulu </a>
<p class="site-difficulty">
difficulty: easy </p>
<p class="tooltip-toggle">No Info Available</p>
</section><section class="site-block easy">
<a class="site-header" href="http://www.hypejar.com/settings/account">
Hypejar </a>
<p class="site-difficulty">
difficulty: easy </p>
<p class="tooltip-toggle">No Info Available</p>
</section><section class="site-block easy">
<a class="site-header" href="https://iceber.gs/home">
Iceber.gs </a>
<p class="site-difficulty">
difficulty: easy </p>
<div class="tooltip-content">
On top bar: 'Your name', 'My Account' and just click on 'Delete Account' link at bottom.
</div>
<a href="#" class="tooltip-toggle contains-info">show info...</a>
</section><section class="site-block impossible">
<a class="site-header" href="http://www.icq.com/download/icq/knownissues/account/en">
ICQ </a>
<p class="site-difficulty">
difficulty: impossible </p>
<div class="tooltip-content">
ICQ is now working on providing a delete feature which will be available in upcoming ICQ versions. Currently, there’s no such functionality.
</div>
<a href="#" class="tooltip-toggle contains-info">show info...</a>
</section><section class="site-block easy">
<a class="site-header" href="https://ifttt.com/settings/deactivate">
IFTTT </a>
<p class="site-difficulty">
difficulty: easy </p>
<p class="tooltip-toggle">No Info Available</p>
</section><section class="site-block easy">
<a class="site-header" href="http://imageshack.us/prefs/">
ImageShack </a>
<p class="site-difficulty">
difficulty: easy </p>
<p class="tooltip-toggle">No Info Available</p>
</section><section class="site-block easy">
<a class="site-header" href="https://secure.imdb.com/register-imdb/delete">
IMDb </a>
<p class="site-difficulty">
difficulty: easy </p>
<p class="tooltip-toggle">No Info Available</p>
</section><section class="site-block easy">
<a class="site-header" href="http://imgur.com/account/settings">
Imgur </a>
<p class="site-difficulty">
difficulty: easy </p>
<p class="tooltip-toggle">No Info Available</p>
</section><section class="site-block hard">
<a class="site-header" href="https://infibot.com/">
InfiBot </a>
<p class="site-difficulty">
difficulty: hard </p>
<div class="tooltip-content">
Email customer support. Requests are handled within 48 hours.<br><a href="mailto:[email protected]?Subject=Account%20Deletion%20Request&body=Please%20delete%20my%20account,%20my%20username%20is%20 XXXXXX">Send email »</a>
</div>
<a href="#" class="tooltip-toggle contains-info">show info...</a>
</section><section class="site-block easy">
<a class="site-header" href="http://goodbye.innogames.com/">
InnoGames </a>
<p class="site-difficulty">
difficulty: easy </p>
<p class="tooltip-toggle">No Info Available</p>
</section><section class="site-block hard">
<a class="site-header" href="http://feedback.instacanv.as/knowledgebase/articles/117760-how-do-i-cancel-my-gallery-">
Instacanvas </a>
<p class="site-difficulty">
difficulty: hard </p>
<div class="tooltip-content">
Email your username and email to customer services and they will delete your account.
</div>
<a href="#" class="tooltip-toggle contains-info">show info...</a>
</section><section class="site-block easy">
<a class="site-header" href="https://instagram.com/accounts/remove/request">
Instagram </a>
<p class="site-difficulty">
difficulty: easy </p>
<p class="tooltip-toggle">No Info Available</p>
</section><section class="site-block easy">
<a class="site-header" href="https://www.instapaper.com/user/delete">
Instapaper </a>
<p class="site-difficulty">
difficulty: easy </p>
<p class="tooltip-toggle">No Info Available</p>
</section><section class="site-block impossible">
<a class="site-header" href="http://legal.kinja.com/kinja-terms-of-use-90161644">
IO9 (Gawker Media) </a>
<p class="site-difficulty">
difficulty: impossible </p>
<div class="tooltip-content">
You may discontinue your use of the Service at any time without informing us. We may, however, retain and continue to use any Content that you have submitted or uploaded through the Service.
</div>
<a href="#" class="tooltip-toggle contains-info">show info...</a>
</section><section class="site-block hard">
<a class="site-header" href="http://www.apple.com/support/itunes/contact/">
iTunes / Apple ID </a>
<p class="site-difficulty">
difficulty: hard </p>
<div class="tooltip-content">
Contact customer services. You will lose access to any media you haven’t downloaded to your computer.
</div>
<a href="#" class="tooltip-toggle contains-info">show info...</a>
</section><section class="site-block impossible">
<a class="site-header" href="http://legal.kinja.com/kinja-terms-of-use-90161644">
Jalopnik (Gawker Media) </a>
<p class="site-difficulty">
difficulty: impossible </p>
<div class="tooltip-content">
You may discontinue your use of the Service at any time without informing us. We may, however, retain and continue to use any Content that you have submitted or uploaded through the Service.
</div>
<a href="#" class="tooltip-toggle contains-info">show info...</a>
</section><section class="site-block impossible">
<a class="site-header" href="http://legal.kinja.com/kinja-terms-of-use-90161644">
Jezebel (Gawker Media) </a>
<p class="site-difficulty">
difficulty: impossible </p>
<div class="tooltip-content">
You may discontinue your use of the Service at any time without informing us. We may, however, retain and continue to use any Content that you have submitted or uploaded through the Service.
</div>
<a href="#" class="tooltip-toggle contains-info">show info...</a>
</section><section class="site-block easy">
<a class="site-header" href="https://drive.jolicloud.com/#/settings/account">
JoliCloud / JoliDrive </a>
<p class="site-difficulty">
difficulty: easy </p>
<div class="tooltip-content">
Click 'Delete Account' at the botom of the account preference page
</div>
<a href="#" class="tooltip-toggle contains-info">show info...</a>
</section><section class="site-block easy">
<a class="site-header" href="https://www.jottacloud.com/account/delete">
Jottacloud </a>
<p class="site-difficulty">
difficulty: easy </p>
<div class="tooltip-content">
Log in. Type in password. Press 'delete'.
</div>
<a href="#" class="tooltip-toggle contains-info">show info...</a>
</section><section class="site-block hard">
<a class="site-header" href="http://doc.jsfiddle.net/meta/channels.html?highlight=contact">
jsFiddle </a>
<p class="site-difficulty">
difficulty: hard </p>
<div class="tooltip-content">
Please send a request to [email protected] if you'd like your account to be deleted. <a href='https://github.com/jsfiddle/jsfiddle-issues/issues/237'>More here</a><br><a href="mailto:[email protected]?Subject=Account%20Deletion%20Request&body=Please%20delete%20my%20account,%20my%20username%20is%20 XXXXXX">Send email »</a>