forked from justdeleteme/justdelete.me
-
Notifications
You must be signed in to change notification settings - Fork 0
/
es.html
3234 lines (3204 loc) · 330 KB
/
es.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 lang="es">
<head>
<title>Just Delete Me | Un directorio de enlaces directos para eliminar sus cuentas de los diferentes servicios de internet.</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="Un directorio de enllaces para eliminar sus cuentas de los diferentes servicios de internet. Descubra como eliminar sus cuentas de Facebook, Twitter y otros.">
<!-- Icons -->
<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="es">Español</span>
<!-- end language switcher -->
<a href="#about" class="info">About</a>
<a href="/fake-identity-generator" class="id-gen">Fake Identity Generator</a>
</nav>
<header>
<h1>just<span>delete</span>.me</h1>
<p class="tagline">Un directorio de enlaces directos para eliminar sus cuentas en la web</p>
<p>
<a href="#extension" class="button banner">Chrome Extension</a>
<a class="button" href="http://github.com/rmlewisuk/justdelete.me">Fork on GitHub</a>
<a class="button" href="https://twitter.com/intent/tweet?text=Just+Delete+Me+-+A+directory+of+direct+links+to+delete+your+account+from+web+services.+http%3A%2F%2Fjustdelete.me">Tweet JDM</a>
</p>
</header>
<div class="search">
<div class="search-container">
<input type="text" id="search">
<a href="#">search</a>
</div>
<div class="sort-container">
<button class="popular">Popular</button>
<button data-dropdown="#dropdown-2" class="az-sort">A - Z</button>
<button data-dropdown="#dropdown-3" class="diff-sort">dificultad</button>
<button class="reset">reset</button>
</div>
</div>
<section class="main">
<section class="adsense">
<script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
<!-- JDM -->
<ins class="adsbygoogle"
style="display:inline-block;width:728px;height:90px"
data-ad-client="ca-pub-9778304973218149"
data-ad-slot="6251902116"></ins>
<script>
(adsbygoogle = window.adsbygoogle || []).push({});
</script>
</section>
<section class="sites" id="sites">
<p class="no-results">Can't find what you're looking for? <a href='http://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">
fácil </p>
<p class="tooltip-toggle">No hay información disponible</p>
</section><section class="site-block easy">
<a class="site-header" href="https://500px.com/settings">
500px </a>
<p class="site-difficulty">
fácil </p>
<p class="tooltip-toggle">No hay información disponible</p>
</section><section class="site-block easy">
<a class="site-header" href="https://9gag.com/member/delete">
9GAG </a>
<p class="site-difficulty">
fácil </p>
<div class="tooltip-content">
Entra en tu cuenta, ve a parámetros, haz clic en 'Delete my account'. Confirma haciendo clic en 'I want to delete my account'. I de nuevo en 'Delete my 9GAG account'.
</div>
<a href="#" class="tooltip-toggle contains-info">mostrar información</a>
</section><section class="site-block easy">
<a class="site-header" href="http://abload.de/settings.php">
Abload </a>
<p class="site-difficulty">
fácil </p>
<p class="tooltip-toggle">No hay información disponible</p>
</section><section class="site-block easy">
<a class="site-header" href="https://about.me/account">
About.me </a>
<p class="site-difficulty">
fácil </p>
<p class="tooltip-toggle">No hay información disponible</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">
difícil </p>
<div class="tooltip-content">
Se tiene que poner en contacto con ellos. Mediante teléfono o e-mail.
</div>
<a href="#" class="tooltip-toggle contains-info">mostrar información</a>
</section><section class="site-block easy">
<a class="site-header" href="https://www.airbnb.com/users/settings">
Airbnb </a>
<p class="site-difficulty">
fácil </p>
<p class="tooltip-toggle">No hay información disponible</p>
</section><section class="site-block easy">
<a class="site-header" href="http://www.albumreminder.com/usercenter/deleteaccount/">
Album Reminder </a>
<p class="site-difficulty">
fácil </p>
<p class="tooltip-toggle">No hay información disponible</p>
</section><section class="site-block hard">
<a class="site-header" href="http://www.alibaba.com/help/contact-us.html">
Alibaba </a>
<p class="site-difficulty">
difícil </p>
<div class="tooltip-content">
Despite what it says in their FAQ there is actually no automatic way to delete your account. But they do see to be happy to do it if you ask them - you can contact them via http://www.alibaba.com/help/contact-us.html - I cancelled my account via their online chat system.
</div>
<a href="#" class="tooltip-toggle contains-info">mostrar información</a>
</section><section class="site-block easy">
<a class="site-header" href="http://alvanista.com/profile/edit">
Alvanista </a>
<p class="site-difficulty">
fácil </p>
<div class="tooltip-content">
Follow the link to edit your profile and click cancel account at bottom.
</div>
<a href="#" class="tooltip-toggle contains-info">mostrar información</a>
</section><section class="site-block easy">
<a class="site-header" href="http://www.amara.org/profiles/account/">
Amara </a>
<p class="site-difficulty">
fácil </p>
<div class="tooltip-content">
Just head to the account page and click the red button 'Delete your account' at the bottom left of the page.
</div>
<a href="#" class="tooltip-toggle contains-info">mostrar información</a>
</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">
difícil </p>
<div class="tooltip-content">
Para cerrar su cuenta, contacte con Amazon via e-mail (rellenando este formulario de contacto) y pidiendo que se cierre su cuenta.
</div>
<a href="#" class="tooltip-toggle contains-info">mostrar información</a>
</section><section class="site-block easy">
<a class="site-header" href="https://portal.aws.amazon.com/gp/aws/manageYourAccount?#productToCancel">
Amazon AWS </a>
<p class="site-difficulty">
fácil </p>
<div class="tooltip-content">
You must login before visiting the link.
</div>
<a href="#" class="tooltip-toggle contains-info">mostrar información</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">
imposible </p>
<div class="tooltip-content">
Nosotros no 'borramos' o 'finalizamos' cuentas de ACC. En el supuesto que no quiera utilizar más el sitio, puede borrar toda su información personal de su perfil y evitar entrar más a su cuenta.
</div>
<a href="#" class="tooltip-toggle contains-info">mostrar información</a>
</section><section class="site-block easy">
<a class="site-header" href="http://cancel.aol.com">
AOL / Instant Messenger </a>
<p class="site-difficulty">
fácil </p>
<p class="tooltip-toggle">No hay información disponible</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">
fácil </p>
<p class="tooltip-toggle">No hay información disponible</p>
</section><section class="site-block hard">
<a class="site-header" href="https://groups.google.com/forum/#!topic/appfog-users/H9AkHjHFfZk">
AppFog </a>
<p class="site-difficulty">
difícil </p>
<div class="tooltip-content">
Remove all applications and services from your account, then request deletion by emailing customer services.<br><a href="mailto:[email protected]?Subject=Account%20Deletion%20Request&body=Please%20delete%20my%20account,%20my%20username%20is%20 XXXXX">Enviar e-mail »</a>
</div>
<a href="#" class="tooltip-toggle contains-info">mostrar información</a>
</section><section class="site-block impossible">
<a class="site-header" href="http://app.argylesocial.com/contact_us">
Argyle Social </a>
<p class="site-difficulty">
imposible </p>
<div class="tooltip-content">
Response from [email protected]: We really don't have a way to delete accounts entirely. The account won't be usable by anyone else, so there won't be any security issues. One smart thing to do to make doubly sure that everything is secure is to go to any social media pages that Argyle was authorized to use, and remove Argyle's authorization. Hope that helps
</div>
<a href="#" class="tooltip-toggle contains-info">mostrar información</a>
</section><section class="site-block easy">
<a class="site-header" href="http://artsy.net/user/delete">
Artsy </a>
<p class="site-difficulty">
fácil </p>
<p class="tooltip-toggle">No hay información disponible</p>
</section><section class="site-block hard">
<a class="site-header" href="http://ask.fm/feedbacks/new">
Ask.fm </a>
<p class="site-difficulty">
difícil </p>
<div class="tooltip-content">
Pida la eliminación de su cuenta al servicio de atención al cliente.
</div>
<a href="#" class="tooltip-toggle contains-info">mostrar información</a>
</section><section class="site-block hard">
<a class="site-header" href="http://asos-de.custhelp.com/app/askchangedetails">
Asos </a>
<p class="site-difficulty">
difícil </p>
<p class="tooltip-toggle">No hay información disponible</p>
</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">
fácil </p>
<p class="tooltip-toggle">No hay información disponible</p>
</section><section class="site-block easy">
<a class="site-header" href="https://bambuser.com/settings">
Bambuser </a>
<p class="site-difficulty">
fácil </p>
<div class="tooltip-content">
Vaya a la página 'Settings', baje hasta encontrar 'Deactivate account'. Clique en el botón 'Close Account', y confirme.
</div>
<a href="#" class="tooltip-toggle contains-info">mostrar información</a>
</section><section class="site-block easy">
<a class="site-header" href="https://bandcamp.com/settings?pane=fan">
Bandcamp </a>
<p class="site-difficulty">
fácil </p>
<div class="tooltip-content">
To terminate an artist account, you must click on the 'Artists' pane, click on the desired artist's profile, and click the termination link there.
</div>
<a href="#" class="tooltip-toggle contains-info">mostrar información</a>
</section><section class="site-block impossible">
<a class="site-header" href="http://www.barnesandnoble.com/customerservice/contactus">
Barnes and Noble </a>
<p class="site-difficulty">
imposible </p>
<div class="tooltip-content">
It is not possible to delete your Barnes and Noble account. The best you can do is delete any personal information that you have stored on their website.
</div>
<a href="#" class="tooltip-toggle contains-info">mostrar información</a>
</section><section class="site-block easy">
<a class="site-header" href="https://basecamp.com/help/guides/account/cancel">
Basecamp </a>
<p class="site-difficulty">
fácil </p>
<div class="tooltip-content">
Data will be permanantly deleted after 30 days.
</div>
<a href="#" class="tooltip-toggle contains-info">mostrar información</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">
difícil </p>
<div class="tooltip-content">
La asistencia al cliente le pedirá que envie una carta firmada confirmando sus deseos, los detalles de la cuenta y una copia de una identificación legal (Pasaporte, DNI...).
</div>
<a href="#" class="tooltip-toggle contains-info">mostrar información</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">
fácil </p>
<p class="tooltip-toggle">No hay información disponible</p>
</section><section class="site-block easy">
<a class="site-header" href="http://www.behance.net/account/privacy">
Behance </a>
<p class="site-difficulty">
fácil </p>
<div class="tooltip-content">
To delete your account, please go into your 'Me' tab, visit account settings and hit the privacy tab. There, you'll have the option to delete.
</div>
<a href="#" class="tooltip-toggle contains-info">mostrar información</a>
</section><section class="site-block easy">
<a class="site-header" href="https://bitbucket.org/account/">
Bitbucket </a>
<p class="site-difficulty">
fácil </p>
<div class="tooltip-content">
En el menú lateral, haga clic en 'Delete Account', y en la página de confirmación pulse 'Delete Account', todas sus cuentas y repositorios serán cancelados.
</div>
<a href="#" class="tooltip-toggle contains-info">mostrar información</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">
imposible </p>
<div class="tooltip-content">
Lo mejor que puedes hacer es archivar los enlaces. Ves al enlace y haz clic en la 'x' de la esquina superior derecha para archivar el enlace. También los puedes hacer privados.
</div>
<a href="#" class="tooltip-toggle contains-info">mostrar información</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">
imposible </p>
<div class="tooltip-content">
Tendrías que borrar toda cuenta de Google entera, pero si que puedes eliminar tu blog.
</div>
<a href="#" class="tooltip-toggle contains-info">mostrar información</a>
<span class="meta">popular</span>
</section><section class="site-block easy">
<a class="site-header" href="https://www.blueapron.com/cancel_subscription">
Blue Apron </a>
<p class="site-difficulty">
fácil </p>
<p class="tooltip-toggle">No hay información disponible</p>
</section><section class="site-block easy">
<a class="site-header" href="http://www.boardgamegeek.com/geekaccount.php?action=requestdeletion">
BoardGameGeek </a>
<p class="site-difficulty">
fácil </p>
<div class="tooltip-content">
Log-in and use the link provided to request account deletion.
</div>
<a href="#" class="tooltip-toggle contains-info">mostrar información</a>
</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">
imposible </p>
<div class="tooltip-content">
Solo puedes desactivar la cuenta contactando con Assistència al client. No podrás eliminar nunca la cuenta, solo desactivarla, les cuentas desactivadas son visibles al público.
</div>
<a href="#" class="tooltip-toggle contains-info">mostrar información</a>
</section><section class="site-block impossible">
<a class="site-header" href="http://www.boerse.bz/profile.php?do=delacc">
BoerseBZ </a>
<p class="site-difficulty">
imposible </p>
<div class="tooltip-content">
Accounts cannot be removed at this time
</div>
<a href="#" class="tooltip-toggle contains-info">mostrar información</a>
</section><section class="site-block easy">
<a class="site-header" href="https://secure.booking.com/login.en-us.html?tmpl=profile/delete_account">
Booking </a>
<p class="site-difficulty">
fácil </p>
<p class="tooltip-toggle">No hay información disponible</p>
</section><section class="site-block hard">
<a class="site-header" href="https://secure.booklooker.de/pages/contact.php">
Booklooker </a>
<p class="site-difficulty">
difícil </p>
<div class="tooltip-content">
You need to request deletion of your data via the contact form after logging in.
</div>
<a href="#" class="tooltip-toggle contains-info">mostrar información</a>
</section><section class="site-block easy">
<a class="site-header" href="https://app.box.com/settings">
Box </a>
<p class="site-difficulty">
fácil </p>
<p class="tooltip-toggle">No hay información disponible</p>
<span class="meta">popular</span>
</section><section class="site-block easy">
<a class="site-header" href="http://bbx.boxee.tv/user/delete">
Boxee </a>
<p class="site-difficulty">
fácil </p>
<p class="tooltip-toggle">No hay información disponible</p>
</section><section class="site-block easy">
<a class="site-header" href="https://bufferapp.com/app/account/leave">
Buffer </a>
<p class="site-difficulty">
fácil </p>
<p class="tooltip-toggle">No hay información disponible</p>
</section><section class="site-block impossible">
<a class="site-header" href="http://burst.net/">
BurstNET </a>
<p class="site-difficulty">
imposible </p>
<div class="tooltip-content">
Support staff refuses to delete accounts due to 'accounting purposes'
</div>
<a href="#" class="tooltip-toggle contains-info">mostrar información</a>
</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">
fácil </p>
<div class="tooltip-content">
Solo tienes que clicar en 'Abschicken'
</div>
<a href="#" class="tooltip-toggle contains-info">mostrar información</a>
</section><section class="site-block impossible">
<a class="site-header" href="http://www.callofduty.com/">
Call of Duty (Activision) </a>
<p class="site-difficulty">
imposible </p>
<div class="tooltip-content">
'There is no way to close or shut down an account.'
</div>
<a href="#" class="tooltip-toggle contains-info">mostrar información</a>
</section><section class="site-block easy">
<a class="site-header" href="http://www.careerbuilder.com/User/UserConfirmation.aspx">
CareerBuilder.com </a>
<p class="site-difficulty">
fácil </p>
<div class="tooltip-content">
Must remove uploaded files first
</div>
<a href="#" class="tooltip-toggle contains-info">mostrar información</a>
</section><section class="site-block hard">
<a class="site-header" href="https://support.cex.io/hc/en-us/articles/201516097-How-can-I-delete-my-account-from-CEX-IO-and-GHash-IO-">
cex.io </a>
<p class="site-difficulty">
difícil </p>
<div class="tooltip-content">
You can't delete your account without contacting them. You must set the subject to 'Delete Account'<br><a href="mailto:[email protected]?Subject=Account%20Deletion%20Request&body=Please%20delete%20my%20account,%20my%20username%20is%20 XXXXX">Enviar e-mail »</a>
</div>
<a href="#" class="tooltip-toggle contains-info">mostrar información</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">
fácil </p>
<p class="tooltip-toggle">No hay información disponible</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">
fácil </p>
<p class="tooltip-toggle">No hay información disponible</p>
</section><section class="site-block impossible">
<a class="site-header" href="">
Cinemagram </a>
<p class="site-difficulty">
imposible </p>
<div class="tooltip-content">
According to the app you can email [email protected] for questions. Unfortunatly removal requests aren't replied to.
</div>
<a href="#" class="tooltip-toggle contains-info">mostrar información</a>
</section><section class="site-block hard">
<a class="site-header" href="https://www.cleverreach.com">
CleverReach </a>
<p class="site-difficulty">
difícil </p>
<div class="tooltip-content">
Email customer services to request deletion<br><a href="mailto:[email protected]?Subject=Account%20Deletion%20Request&body=Please%20delete%20my%20account,%20my%20username%20is%20 XXXXX">Enviar e-mail »</a>
</div>
<a href="#" class="tooltip-toggle contains-info">mostrar información</a>
</section><section class="site-block easy">
<a class="site-header" href="https://customer.eu.clickandbuy.com/surfer/spring/settings-terminateaccount-flow">
ClickAndBuy </a>
<p class="site-difficulty">
fácil </p>
<div class="tooltip-content">
Login to your account, then click 'delete account' on the page.
</div>
<a href="#" class="tooltip-toggle contains-info">mostrar información</a>
</section><section class="site-block easy">
<a class="site-header" href="http://my.cl.ly/account/delete">
CloudApp </a>
<p class="site-difficulty">
fácil </p>
<p class="tooltip-toggle">No hay información disponible</p>
</section><section class="site-block easy">
<a class="site-header" href="https://cloudmagic.com/a/v2/preferences">
CloudMagic </a>
<p class="site-difficulty">
fácil </p>
<p class="tooltip-toggle">No hay información disponible</p>
</section><section class="site-block hard">
<a class="site-header" href="https://cbsi.secure.force.com/CBSi/submitcase?template=template_cnet&referer=cnet.com&cfs=SFS_1">
Cnet </a>
<p class="site-difficulty">
difícil </p>
<div class="tooltip-content">
You have to ask the support to maybe get your account delete. Chose the category CNET Redigstration
</div>
<a href="#" class="tooltip-toggle contains-info">mostrar información</a>
</section><section class="site-block impossible">
<a class="site-header" href="https://cne.coderedweb.com">
Code Red </a>
<p class="site-difficulty">
imposible </p>
<div class="tooltip-content">
No podrá eliminar la cuenta. Solo puedes canviarte el número de teléfono.
</div>
<a href="#" class="tooltip-toggle contains-info">mostrar información</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">
media </p>
<div class="tooltip-content">
Empiece una discusión privada con ellos y 'procurarán hacerlo.
</div>
<a href="#" class="tooltip-toggle contains-info">mostrar información</a>
</section><section class="site-block easy">
<a class="site-header" href="http://help.codecademy.com/customer/portal/articles/1394081-how-do-i-delete-my-account-">
Codecademy </a>
<p class="site-difficulty">
fácil </p>
<div class="tooltip-content">
Por razones de seguridad, necesitamos verificar si estas peticiones provienen desde el e-mail ligado a su cuenta de Codeacademy.
</div>
<a href="#" class="tooltip-toggle contains-info">mostrar información</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">
fácil </p>
<p class="tooltip-toggle">No hay información disponible</p>
</section><section class="site-block easy">
<a class="site-header" href="https://coderwall.com/delete_account">
Coderwall </a>
<p class="site-difficulty">
fácil </p>
<div class="tooltip-content">
Identifícate en el sitio web y entra en https://coderwall.com/delete_account
</div>
<a href="#" class="tooltip-toggle contains-info">mostrar información</a>
</section><section class="site-block medium">
<a class="site-header" href="http://www.commentcamarche.net/communaute/remove.php3">
Comment ça marche </a>
<p class="site-difficulty">
media </p>
<div class="tooltip-content">
login. !! Your message which you have post will be kept for the readable of the forum !!
</div>
<a href="#" class="tooltip-toggle contains-info">mostrar información</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">
imposible </p>
<div class="tooltip-content">
No se puede eliminar completamente, la reactivación será posible siempre. Rellene el formulario y seleccione 'I understand. Please delete my profile.'.
</div>
<a href="#" class="tooltip-toggle contains-info">mostrar información</a>
</section><section class="site-block hard">
<a class="site-header" href="https://www.coursera.org/about/contact">
Coursera </a>
<p class="site-difficulty">
difícil </p>
<div class="tooltip-content">
Contacte con asistencia al cliente y pide que te borren la cuenta.
</div>
<a href="#" class="tooltip-toggle contains-info">mostrar información</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">
difícil </p>
<div class="tooltip-content">
Envie un e-mail a [email protected] y pide que eliminen su cuenta.<br><a href="mailto:[email protected]?Subject=Account%20Deletion%20Request&body=Please%20delete%20my%20account,%20my%20username%20is%20 XXXXXX">Enviar e-mail »</a>
</div>
<a href="#" class="tooltip-toggle contains-info">mostrar información</a>
</section><section class="site-block hard">
<a class="site-header" href="http://support.crashplan.com/">
CrashPlan </a>
<p class="site-difficulty">
difícil </p>
<div class="tooltip-content">
Start a live chat session and a representative will delete your account.
</div>
<a href="#" class="tooltip-toggle contains-info">mostrar información</a>
</section><section class="site-block hard">
<a class="site-header" href="https://www.creditexpert.co.uk/">
CreditExpert </a>
<p class="site-difficulty">
difícil </p>
<div class="tooltip-content">
You can cancel by email but only if your membership includes insurance. Otherwise, an email cancellation will be ignored. You have to call 0800 561 0083 to cancel your account. This is the only way. More info here: http://experian.metafaq.com/help/CreditExpertBRS/Cancel_and_duration/CancelBRS
</div>
<a href="#" class="tooltip-toggle contains-info">mostrar información</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">
fácil </p>
<div class="tooltip-content">
Edite su cuenta y seleccione 'Remove my account'.
</div>
<a href="#" class="tooltip-toggle contains-info">mostrar información</a>
</section><section class="site-block easy">
<a class="site-header" href="https://www.dashlane.com/deleteaccount">
Dashlane </a>
<p class="site-difficulty">
fácil </p>
<div class="tooltip-content">
You have to enter your mailadress and have to choose a 'why are you leaving' answer'. To verify this step you'll become a mail with a security code to fill into the form. After that your account is deleted.
</div>
<a href="#" class="tooltip-toggle contains-info">mostrar información</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">
imposible </p>
<div class="tooltip-content">
Usted puede parar de usar el servicio en cualquier momento. Nosotros, mantendremos y continuaremos utilizando cualquier contenido que haya enviado a nuestro servicio.
</div>
<a href="#" class="tooltip-toggle contains-info">mostrar información</a>
</section><section class="site-block easy">
<a class="site-header" href="https://delicious.com/settings/deactivate">
Delicious </a>
<p class="site-difficulty">
fácil </p>
<p class="tooltip-toggle">No hay información disponible</p>
</section><section class="site-block hard">
<a class="site-header" href="http://www.delta.com/content/www/en_US/support/talk-to-us/skymiles.html">
Delta Airlines (SkyMiles) </a>
<p class="site-difficulty">
difícil </p>
<div class="tooltip-content">
You cannot delete your Delta Skymiles account online. You must contact them by mail in order to delete your account.
</div>
<a href="#" class="tooltip-toggle contains-info">mostrar información</a>
</section><section class="site-block easy">
<a class="site-header" href="http://desktop.ly/settings">
Desktoply </a>
<p class="site-difficulty">
fácil </p>
<p class="tooltip-toggle">No hay información disponible</p>
</section><section class="site-block easy">
<a class="site-header" href="https://www.desktoppr.co/settings">
Desktoppr </a>
<p class="site-difficulty">
fácil </p>
<p class="tooltip-toggle">No hay información disponible</p>
</section><section class="site-block easy">
<a class="site-header" href="https://www.deviantart.com/settings/deactivation">
DeviantArt </a>
<p class="site-difficulty">
fácil </p>
<div class="tooltip-content">
Todos sus datos son borrados inmediatamente. Todas las cuentas pueden ser reactivadas antes de 30 dias, después de ese plazo no podrá ser recuperada.
</div>
<a href="#" class="tooltip-toggle contains-info">mostrar información</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">
imposible </p>
<div class="tooltip-content">
No hay información en el FAQ sobre la cancelación de cuentas, el operador telefónico dice que no se pueden borrar las cuentas.
</div>
<a href="#" class="tooltip-toggle contains-info">mostrar información</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">
fácil </p>
<div class="tooltip-content">
Haga clic en 'close my account' y confirmelo con su contraseña.
</div>
<a href="#" class="tooltip-toggle contains-info">mostrar información</a>
</section><section class="site-block hard">
<a class="site-header" href="http://digg.com/contact">
Digg </a>
<p class="site-difficulty">
difícil </p>
<div class="tooltip-content">
Contacte con asistencia al cliente de Digg y pida que se clausure su cuenta.
</div>
<a href="#" class="tooltip-toggle contains-info">mostrar información</a>
</section><section class="site-block easy">
<a class="site-header" href="http://www.dihitt.com/user/delete_profile">
diHITT </a>
<p class="site-difficulty">
fácil </p>
<p class="tooltip-toggle">No hay información disponible</p>
</section><section class="site-block easy">
<a class="site-header" href="http://www.discogs.com/users/delete">
Discogs </a>
<p class="site-difficulty">
fácil </p>
<p class="tooltip-toggle">No hay información disponible</p>
</section><section class="site-block easy">
<a class="site-header" href="http://disqus.com/pages/dashboard/#account">
Disqus </a>
<p class="site-difficulty">
fácil </p>
<p class="tooltip-toggle">No hay información disponible</p>
</section><section class="site-block medium">
<a class="site-header" href="https://bangwithfriends.zendesk.com/hc/en-us/articles/201441976-Deleting-Your-Account">
DOWN </a>
<p class="site-difficulty">
media </p>
<div class="tooltip-content">
You need to remove the App in your Facebook settings and mail [email protected] to delete your data.<br><a href="mailto:[email protected]?Subject=Account%20Deletion%20Request&body=Please%20delete%20my%20account,%20my%20username%20is%20 XXXXX">Enviar e-mail »</a>
</div>
<a href="#" class="tooltip-toggle contains-info">mostrar información</a>
</section><section class="site-block easy">
<a class="site-header" href="https://draftin.com/draft/users/edit">
Draft </a>
<p class="site-difficulty">
fácil </p>
<p class="tooltip-toggle">No hay información disponible</p>
</section><section class="site-block easy">
<a class="site-header" href="http://dribbble.com/account">
Dribbble </a>
<p class="site-difficulty">
fácil </p>
<p class="tooltip-toggle">No hay información disponible</p>
</section><section class="site-block easy">
<a class="site-header" href="https://drone.io/admin">
drone.io </a>
<p class="site-difficulty">
fácil </p>
<p class="tooltip-toggle">No hay información disponible</p>
</section><section class="site-block easy">
<a class="site-header" href="https://www.dropbox.com/account/delete">
Dropbox </a>
<p class="site-difficulty">
fácil </p>
<p class="tooltip-toggle">No hay información disponible</p>
</section><section class="site-block easy">
<a class="site-header" href="https://droplr.com/settings">
Droplr </a>
<p class="site-difficulty">
fácil </p>
<p class="tooltip-toggle">No hay información disponible</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">
difícil </p>
<p class="tooltip-toggle">No hay información disponible</p>
</section><section class="site-block easy">
<a class="site-header" href="http://www.duolingo.com/settings/deactivate">
Duolingo </a>
<p class="site-difficulty">
fácil </p>
<p class="tooltip-toggle">No hay información disponible</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">
difícil </p>
<div class="tooltip-content">
Todas las cuentas permanecerán en el sistema durante 3 años. Borre cualquier información bancaria antes de eliminar la cuenta.
</div>
<a href="#" class="tooltip-toggle contains-info">mostrar información</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">
difícil </p>
<div class="tooltip-content">
Contacte con asistencia al cliente y pida que se cierre su cuenta. Si vives fuera de EEUU deberás hacerlo por teléfono.
</div>
<a href="#" class="tooltip-toggle contains-info">mostrar información</a>
</section><section class="site-block easy">
<a class="site-header" href="https://www.easel.io/users/edit#cancellation">
Easel </a>
<p class="site-difficulty">
fácil </p>
<p class="tooltip-toggle">No hay información disponible</p>
</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">
fácil </p>
<div class="tooltip-content">
Se le hará un pequeño cuestionario antes de borrar la cuenta.
</div>
<a href="#" class="tooltip-toggle contains-info">mostrar información</a>
<span class="meta">popular</span>
</section><section class="site-block impossible">
<a class="site-header" href="http://www.edreams.com/edreams/english/about/copyright.jhtml">
eDreams </a>
<p class="site-difficulty">
imposible </p>
<div class="tooltip-content">
FAQ states that account can be deleted upon request, but e-mails requesting it are completely ignored.
</div>
<a href="#" class="tooltip-toggle contains-info">mostrar información</a>
</section><section class="site-block impossible">
<a class="site-header" href="https://www.edx.org/student-faq">
EdX </a>
<p class="site-difficulty">
imposible </p>
<div class="tooltip-content">
No tiene porqué borrar la cuenta. Una cuenta antigua no usada y sin cursos completos será eliminado.
</div>
<a href="#" class="tooltip-toggle contains-info">mostrar información</a>
</section><section class="site-block easy">
<a class="site-header" href="https://www.endomondo.com/?wicket:interface=:15::::">
Endomondo </a>
<p class="site-difficulty">
fácil </p>
<div class="tooltip-content">
Select any reason for closing your profile. After that you have to complete the process by clicking a link in an email sent to you.
</div>
<a href="#" class="tooltip-toggle contains-info">mostrar información</a>
</section><section class="site-block hard">
<a class="site-header" href="http://www.erepublik.com/en/contact/none/none">
eRepublik </a>
<p class="site-difficulty">
difícil </p>
<div class="tooltip-content">
Create new Game Support ticket to request account removal.
</div>
<a href="#" class="tooltip-toggle contains-info">mostrar información</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">
difícil </p>
<div class="tooltip-content">
No puede tener pagos pendientes con Etsy o una entrega pendiente. Su e-mail continuará en los ficheros.
</div>
<a href="#" class="tooltip-toggle contains-info">mostrar información</a>
</section><section class="site-block easy">
<a class="site-header" href="https://www.eventbrite.com/account-close">
Eventbrite </a>
<p class="site-difficulty">
fácil </p>
<p class="tooltip-toggle">No hay información disponible</p>
</section><section class="site-block hard">
<a class="site-header" href="http://support.eventful.com/entries/25351895-How-do-I-cancel-delete-my-account-">
Eventful </a>
<p class="site-difficulty">
difícil </p>
<div class="tooltip-content">
Contact support and they will delete your account
</div>
<a href="#" class="tooltip-toggle contains-info">mostrar información</a>
</section><section class="site-block impossible">
<a class="site-header" href="https://www.evernote.com/Deactivate.action">
Evernote </a>
<p class="site-difficulty">
imposible </p>
<div class="tooltip-content">
No se puede eliminar una cuenta de Evernote, solo se puede desactivar la temporalmente. La desactivación no borra sus datos, lo deberá hacer manualmente, después sincronitzar y desactivar.
</div>
<a href="#" class="tooltip-toggle contains-info">mostrar información</a>
</section><section class="site-block hard">
<a class="site-header" href="https://www.experiandirect.com/triplealert/Message.aspx?PageTypeID=FAQ&WT.svl=faq&SiteVersionID=473&SiteID=100173&sc=657900&bcd=">
Experian </a>
<p class="site-difficulty">
difícil </p>
<div class="tooltip-content">
You have to call or email them. They respond to email quickly, however, so it is not that painful.<br><a href="mailto:[email protected]?Subject=Account%20Deletion%20Request&body=Please%20delete%20my%20account,%20my%20username%20is%20 XXXXX">Enviar e-mail »</a>
</div>
<a href="#" class="tooltip-toggle contains-info">mostrar información</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">
media </p>
<div class="tooltip-content">
Puede borrar la cuenta facilmente, algunos de los datos como el chat o mensajes en grupo son guardados para siempre, como se explica en los Terminos de privacidad del sitio.
</div>
<a href="#" class="tooltip-toggle contains-info">mostrar información</a>
<span class="meta">popular</span>
</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">
difícil </p>
<div class="tooltip-content">
Envie un e-mail a la asistencia al cliente para pedir la eliminación de la cuenta.
</div>
<a href="#" class="tooltip-toggle contains-info">mostrar información</a>
</section><section class="site-block medium">
<a class="site-header" href="https://finanzblick.de/webapp">
Finanzblick </a>
<p class="site-difficulty">
media </p>
<div class="tooltip-content">
clique en su usuario (arriba a la izquierda) → clique en 'Profileinstellungen' → 'Account löschen'. Todos sus datos serán eliminados.
</div>
<a href="#" class="tooltip-toggle contains-info">mostrar información</a>
</section><section class="site-block easy">
<a class="site-header" href="https://www.fitocracy.com/account/deletion/">
Fitocracy </a>
<p class="site-difficulty">
fácil </p>
<p class="tooltip-toggle">No hay información disponible</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">
fácil </p>
<p class="tooltip-toggle">No hay información disponible</p>
</section><section class="site-block easy">
<a class="site-header" href="https://flipboard.com/support/">
Flipboard </a>
<p class="site-difficulty">
fácil </p>
<div class="tooltip-content">
Ve a 'Account Management' dentro de la aplicación
</div>
<a href="#" class="tooltip-toggle contains-info">mostrar información</a>
</section><section class="site-block hard">
<a class="site-header" href="https://www.flixster.com/docs/privacy/">
Flixster </a>
<p class="site-difficulty">
difícil </p>
<div class="tooltip-content">
Email [email protected] and ask to have your account deleted.
</div>
<a href="#" class="tooltip-toggle contains-info">mostrar información</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">
media </p>
<div class="tooltip-content">
Para borrar su cuenta no debe subir nada en 3 días.
</div>
<a href="#" class="tooltip-toggle contains-info">mostrar información</a>
</section><section class="site-block easy">
<a class="site-header" href="http://forrst.com/settings">
Forrst </a>
<p class="site-difficulty">
fácil </p>
<p class="tooltip-toggle">No hay información disponible</p>
</section><section class="site-block easy">
<a class="site-header" href="https://foursquare.com/delete_me">
Foursquare </a>
<p class="site-difficulty">
fácil </p>
<p class="tooltip-toggle">No hay información disponible</p>
<span class="meta">popular</span>
</section><section class="site-block hard">
<a class="site-header" href="http://www.freelancer.com/report/contact.php">
Freelancer </a>
<p class="site-difficulty">
difícil </p>
<div class="tooltip-content">
Fíjate si el balance de la cuenta es positivo, si lo es envíe un 'ticket' a la asistencia pidiendo que cierren su cuenta
</div>
<a href="#" class="tooltip-toggle contains-info">mostrar información</a>
</section><section class="site-block easy">
<a class="site-header" href="https://ezcrypt.it/ML4n#ej6rorotmsxq7jF8ViyGjTVh">
Freenode </a>
<p class="site-difficulty">
fácil </p>
<div class="tooltip-content">
/msg NickServ DROP nombre_usuario contraseña
</div>
<a href="#" class="tooltip-toggle contains-info">mostrar información</a>
</section><section class="site-block easy">
<a class="site-header" href="https://friendfeed.com/account/delete">
FriendFeed </a>
<p class="site-difficulty">
fácil </p>
<p class="tooltip-toggle">No hay información disponible</p>
</section><section class="site-block hard">
<a class="site-header" href="https://gamespot.custhelp.com/app/ask">
Gamespot </a>
<p class="site-difficulty">