-
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathindex-en.html
More file actions
976 lines (958 loc) · 40.2 KB
/
index-en.html
File metadata and controls
976 lines (958 loc) · 40.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="charset" content="utf-8">
<title>Right to be Forgotten | rtbf.ir</title>
<link
href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.1/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-+0n0xVW2eSR5OomGNYDnhzAbDsOXxcvSN1TPprVMTNDbiYZCxYbOOl7+AMvyTG2x"
crossorigin="anonymous"
>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.7.2/css/all.min.css"
>
<link rel="icon" href="assets/img/favicon.png" sizes="32x32">
<link rel="stylesheet" href="assets/css/layout.css">
<meta name="viewport" content="width=device-width,initial-scale=1">
<meta
name="keywords"
content="right to be forgotten,privacy,delete account,account deletion,rtbf,gdpr,privacy policy,account deletion directory"
>
<meta
name="description"
content="Many internet services do not allow you to delete your account. We believe this violates user privacy. The right to be forgotten is a fundamental right that conflicts with such practices."
>
<meta property="og:title" content="Right to be Forgotten Service">
<meta
property="og:description"
content="Many internet services do not allow you to delete your account. We believe this violates user privacy. The right to be forgotten is a fundamental right that conflicts with such practices."
>
<meta property="og:site_name" content="RTBF">
<meta name="subject" content="Right to be forgotten">
<meta name="language" content="EN">
<meta name="robots" content="index, follow, archive, snippet, odp, translate, imageindex">
<meta name="revised" content="Saturday, February 21st, 2025, 12:00 pm">
<meta name="author" content="Amir Shokri">
<meta name="generator" content="Amir Shokri">
<meta name="designer" content="Sodeh Mohammadabadi">
<meta name="copyright" content="rtbf.ir">
<meta name="owner" content="Amir Shokri">
<meta name="url" content="https://rtbf.ir/index-en.html">
<meta name="identifier-URL" content="https://rtbf.ir/index-en.html">
<meta name="coverage" content="Worldwide">
<meta name="distribution" content="Global">
<meta name="rating" content="General">
<meta name="revisit-after" content="7 days">
<meta property="og:region" content="IR">
<meta property="og:country-name" content="IRAN">
<meta property="og:url" content="https://rtbf.ir/index-en.html">
<meta name="DC.title" content="Right to be Forgotten | rtbf.ir">
<meta name="DC.creator" content="Amir Shokri">
<meta name="DC.subject" content="Right to be forgotten">
<meta name="DC.description" content="Many internet services do not allow you to delete your account. We believe this violates user privacy. The right to be forgotten is a fundamental right that conflicts with such practices.">
<meta name="DC.publisher" content="rtbf.ir">
<meta name="DC.contributor" content="Sodeh Mohammadabadi">
<meta name="DC.date" content="2025-02-21">
<meta name="DC.type" content="Text">
<meta name="DC.format" content="text/html">
<meta name="DC.identifier" content="https://rtbf.ir/index-en.html">
<meta name="DC.language" content="en">
<meta name="DC.coverage" content="Worldwide">
<meta name="DC.rights" content="rtbf.ir">
<meta
property="og:image"
content="https://rtbf.ir/assets/img/og-image.png"
>
<meta property="og:type" content="website">
<meta property="twitter:card" content="website">
<meta name="twitter:title" content="Right to be Forgotten Service">
<meta property="twitter:url" content="https://rtbf.ir/index-en.html">
<meta
name="twitter:image"
content="https://rtbf.ir/assets/img/og-image.png"
>
<meta
name="twitter:description"
content="Many internet services do not allow you to delete your account. We believe this violates user privacy. The right to be forgotten is a fundamental right that conflicts with such practices."
>
<link rel="canonical" href="https://rtbf.ir/index-en.html">
<link rel="alternate" hreflang="fa" href="https://rtbf.ir/">
<link rel="alternate" hreflang="en" href="https://rtbf.ir/index-en.html">
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "BreadcrumbList",
"itemListElement": [
{
"@type": "ListItem",
"position": 1,
"name": "Right to be Forgotten",
"item": "https://rtbf.ir/index-en.html"
}
]
}
</script>
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "CreativeWork",
"name": "Right to be Forgotten Service",
"description": "Many internet services do not allow you to delete your account. We believe this violates user privacy. The right to be forgotten is a fundamental right that conflicts with such practices.",
"creator": {
"@type": "Person",
"name": "Amir Shokri",
"url": "https://ashokri.com"
},
"publisher": {
"@type": "Organization",
"name": "RTBF",
"url": "https://rtbf.ir"
},
"license": "https://www.apache.org/licenses/LICENSE-2.0",
"image": "https://rtbf.ir/assets/img/og-image.png",
"inLanguage": "en",
"isPartOf": {
"@type": "WebSite",
"name": "RTBF",
"url": "https://rtbf.ir"
}
}
</script>
</head>
<body dir="ltr">
<header>
<div class="container menu">
<div class="row">
<div class="col-xl-12 col-lg-12 col-md-12 col-sm-12 col-12">
<nav
class="navbar navbar-expand-lg navbar-light bg-blur fixed-top main-menu"
>
<div class="container-fluid">
<button
class="navbar-toggler"
type="button"
data-bs-toggle="collapse"
data-bs-target="#navbarSupportedContent"
aria-controls="navbarSupportedContent"
aria-expanded="false"
aria-label="Toggle navigation"
>
<span class="navbar-toggler-icon"></span>
</button>
<div
class="collapse navbar-collapse"
id="navbarSupportedContent"
>
<ul class="navbar-nav m-auto text-center">
<li class="nav-item">
<a
href="index-en"
title="Home"
class="nav-link active text-dark"
><span class="fas fa-1x fa-home"></span> Home</a
>
</li>
<li class="nav-item">
<a
href="directory"
title="Service Directory"
class="nav-link text-dark"
><span class="fas fa-1x fa-list"></span> Service Directory</a
>
</li>
<li class="nav-item">
<a
href="collabrator"
title="Contributors"
class="nav-link text-dark"
><span class="fas fa-1x fa-network-wired"></span>
Contributors</a
>
</li>
<li class="nav-item">
<a href="banners" title="Banners" class="nav-link text-dark"
><span class="fas fa-1x fa-scroll"></span> Banners</a
>
</li>
<li class="nav-item">
<a href="blog" title="Blog" class="nav-link text-dark"
><span class="fas fa-1x fa-newspaper"></span> Blog</a
>
</li>
<li class="nav-item">
<a
href="donate"
title="Donate"
class="nav-link text-dark"
><span class="fas fa-1x fa-donate"></span> Donate</a
>
</li>
<li class="nav-item">
<a
href="faq"
title="FAQ"
class="nav-link text-dark"
><span class="fas fa-1x fa-question"></span> FAQ</a
>
</li>
<li class="nav-item">
<a
href="index"
title="فارسی"
class="nav-link text-dark"
><span class="fas fa-1x fa-language"></span> فارسی</a
>
</li>
</ul>
</div>
</div>
</nav>
</div>
</div>
</div>
<div class="header-wall">
<div class="container heading">
<div class="row">
<div
class="col-xl-12 col-lg-12 col-md-12 col-sm-12 col-12 text-light"
dir="ltr"
>
<h1 class="d-none">Right to be Forgotten</h1>
<h2 class="d-none">Account Deletion Directory</h2>
<h3 class="d-none">rtbf.ir</h3>
<p class="links">
<a
target="_blank"
class="btn btn-info text-light share-twitter"
href="https://x.com/intent/tweet?text=If account deletion matters to you too, use this service: rtbf.ir - @rtbf_ir"
rel="nofollow noreferrer noopener"
title="Tweet"
><span class="fab fa-1x fa-x-twitter"></span> Tweet
</a>
<a
target="_blank"
class="btn btn-warning text-light contribute-github"
rel="nofollow noreferrer noopener"
href="https://github.com/rtbf-ir/rtbf.ir/issues/new/choose"
title="Contribute"
><span class="fab fa-1x fa-github"></span> Contribute
</a>
</p>
</div>
</div>
</div>
</div>
<div class="breadcrumb">
<div class="container">
<div class="row">
<div class="col-xl-12 col-lg-12 col-md-12 col-sm-12 col-12">
<nav class="navbar">
<ul class="nav">
<li class="nav-item">
<a class="nav-link" href="index-en">Right to be Forgotten</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">Home</a>
</li>
</ul>
</nav>
</div>
</div>
</div>
</div>
</header>
<section>
<div class="homepage-content">
<div class="container">
<div class="row">
<div
class="homepage-section-row col-xl-12 col-lg-12 col-md-12 col-sm-12 col-12"
>
<div
class="col-xl-4 col-lg-4 col-md-4 col-sm-4 col-12 float-left"
>
<img
src="assets/img/avatar.png"
class="img-fluid"
alt="Right to be Forgotten Project"
title="Right to be Forgotten Project"
loading="lazy"
>
</div>
<div
class="col-xl-8 col-lg-8 col-md-8 col-sm-8 col-12 float-right"
>
<h5>
<i class="fas fa-1x fa-user-minus"></i> Right to be Forgotten Project
</h5>
<p>
As more and more of our data spreads across the internet, concerns about privacy and data ownership grow. Many of us have had an account we used with the knowledge we had at the time, and years later we find that account still holds things that are no longer appropriate for us. Sometimes we simply no longer want an account with a service and wish to have all of that account’s information completely removed.
</p>
<p></p>
<p>
Many internet services do not offer the option to delete your account. We believe this violates user privacy. Given the right to be forgotten, this is a contradiction.
</p>
<p>
At the Right to be Forgotten service we work to uphold users’ rights on Persian-language services, apps, and platforms so that you can remove your account whenever you wish. We develop tools and produce related content to advocate for this right.
</p>
<p>
<strong>Click the button below to use the service:</strong>
</p>
<p>
<a
class="btn btn-warning go-to-service"
rel="nofollow noreferrer noopener"
href="directory"
title="Right to be Forgotten Directory"
>
Right to be Forgotten Directory</a
>
</p>
</div>
<div class="clearfix"></div>
</div>
<div
class="homepage-section-row col-xl-12 col-lg-12 col-md-12 col-sm-12 col-12"
>
<p> </p>
</div>
<div
class="homepage-section-row col-xl-12 col-lg-12 col-md-12 col-sm-12 col-12"
>
<div
class="col-xl-3 col-lg-3 col-md-3 col-sm-3 col-12 float-left"
>
<img
src="assets/img/plugin.jpg"
class="img-fluid homepage-section-row-image"
title="Right to be Forgotten browser extension"
alt="Right to be Forgotten browser extension"
loading="lazy"
>
</div>
<div
class="col-xl-9 col-lg-9 col-md-9 col-sm-9 col-12 float-right"
>
<h5>
<span class="fas fa-1x fa-plug"></span> Right to be Forgotten browser extension
</h5>
<p>
An important goal of the Right to be Forgotten service is to let you know, before signing up for a website, service, or app, whether that service allows you to delete your account. That way you can decide as a user whether to use the service or not.
</p>
<p>Use the following browser extensions:</p>
<p>
<span class="d-inline-block text-center">
<a
class="btn btn-success bg-chrome"
rel="nofollow noreferrer noopener"
href="https://chromewebstore.google.com/detail/right-to-be-forgotten/ogijchfghlflmfmdaeeeiondjpdnfilh"
title="Download Chrome extension"
>
<span class="fab fa-1x fa-chrome"></span> Download Chrome extension</a
>
</span>
<span class="d-inline-block text-center">
<a
class="btn btn-success bg-firefox"
rel="nofollow noreferrer noopener"
href="https://addons.mozilla.org/en-US/firefox/addon/right-to-be-forgotten-iran"
title="Download Firefox extension"
>
<span class="fab fa-1x fa-firefox"></span> Download Firefox extension</a
>
</span>
</p>
</div>
<div class="clearfix"></div>
</div>
<div
class="homepage-section-row col-xl-12 col-lg-12 col-md-12 col-sm-12 col-12"
>
<div
class="col-xl-3 col-lg-3 col-md-3 col-sm-3 col-12 float-left"
>
<img
src="assets/img/signature.png"
class="img-fluid homepage-section-row-image"
title="Right to be Forgotten campaign in Iran"
alt="Right to be Forgotten campaign in Iran"
loading="lazy"
>
</div>
<div
class="col-xl-9 col-lg-9 col-md-9 col-sm-9 col-12 float-right"
>
<h5>
<span class="fas fa-1x fa-signature"></span> Right to be Forgotten campaign in Iran
</h5>
<p>
If you support the direction and goals of the open-source Right to be Forgotten project, you can sign our campaigns to give the project more visibility and moral support. Campaigns are available in both Persian and English.
</p>
<p>Right to be Forgotten campaign links:</p>
<p>
<a
class="btn btn-warning"
target="_blank"
rel="nofollow noreferrer noopener"
href="https://karzar.net/rtbf"
title="Persian version of the Right to be Forgotten campaign in Iran"
>
<span class="fas fa-1x fa-signature"></span> Persian campaign</a
>
<a
class="btn btn-warning"
target="_blank"
rel="nofollow noreferrer noopener"
href="https://chng.it/5zxjCKqHGN"
title="English version of the Right to be Forgotten campaign in Iran"
><span class="fas fa-1x fa-signature"></span> English campaign</a
>
</p>
</div>
<div class="clearfix"></div>
</div>
<div
class="homepage-section-row col-xl-12 col-lg-12 col-md-12 col-sm-12 col-12"
>
<div
class="col-xl-3 col-lg-3 col-md-3 col-sm-3 col-12 float-left"
>
<img
src="assets/img/socialmedia.png"
class="img-fluid homepage-section-row-image"
title="Right to be Forgotten on social media"
alt="Right to be Forgotten on social media"
loading="lazy"
>
</div>
<div
class="col-xl-9 col-lg-9 col-md-9 col-sm-9 col-12 float-right"
>
<h5>
<span class="fas fa-1x fa-plug"></span> Right to be Forgotten on social media
</h5>
<p>
Our social channels are a place to raise awareness for Persian-speaking web users and share experiences. One way to support the Right to be Forgotten project is to share our social content, which helps the service reach more people.
</p>
<p>Right to be Forgotten social links:</p>
<p>
<a
title="Join our community"
href="https://t.me/+51BIjll9ZFFhY2Y8"
class="btn btn-warning"
rel="nofollow noreferrer noopener"
target="_blank"
><span class="fas fa-1x fa-users"></span> Project community</a
>
<a
title="Follow us on Telegram"
href="https://t.me/rtbf_ir"
class="btn btn-warning"
rel="nofollow noreferrer noopener"
target="_blank"
><span class="fab fa-1x fa-telegram"></span> Telegram</a
>
<a
title="Follow us on X (Twitter)"
href="https://x.com/rtbf_ir"
class="btn btn-warning"
rel="nofollow noreferrer noopener"
target="_blank"
><span class="fab fa-1x fa-x-twitter"></span> X (Twitter)</a
>
<a
title="Follow us on Instagram"
href="https://www.instagram.com/rtbf_ir/"
class="btn btn-warning"
rel="nofollow noreferrer noopener"
target="_blank"
><span class="fab fa-1x fa-instagram"></span> Instagram</a
>
<a
title="View project on GitHub"
href="https://github.com/rtbf-ir/rtbf.ir"
class="btn btn-warning"
rel="nofollow noreferrer noopener"
target="_blank"
>
<span class="fab fa-1x fa-github"></span> GitHub
</a>
</p>
</div>
<div class="clearfix"></div>
</div>
<div
class="homepage-section-row col-xl-12 col-lg-12 col-md-12 col-sm-12 col-12"
>
<div
class="col-xl-3 col-lg-3 col-md-3 col-sm-3 col-12 float-left"
>
<img
src="assets/img/dontaion.png"
class="img-fluid homepage-section-row-image"
title="Ways to support the Right to be Forgotten project"
alt="Ways to support the Right to be Forgotten project"
loading="lazy"
>
</div>
<div
class="col-xl-9 col-lg-9 col-md-9 col-sm-9 col-12 float-right"
>
<h5>
<span class="fas fa-1x fa-hand-holding-heart"></span> Ways to support the Right to be Forgotten project
</h5>
<p>
The Right to be Forgotten project is open source with no commercial or revenue plan. All services are free and will remain free for as long as the project continues. Like any open-source volunteer project, it needs financial and moral support. You can support the project in the following ways:
</p>
<p>
<a class="btn btn-warning" href="donate" title="Donate"
><span class="fas fa-1x fa-coins"></span> Donate</a
>
<a class="btn btn-warning" href="banners" title="Moral support"
><span class="fas fa-1x fa-scroll"></span> Moral support (banners)</a
>
</p>
</div>
<div class="clearfix"></div>
</div>
<div
class="homepage-section-row col-xl-12 col-lg-12 col-md-12 col-sm-12 col-12"
>
<div
class="col-xl-3 col-lg-3 col-md-3 col-sm-3 col-12 float-left"
>
<img
src="assets/img/develope.png"
class="img-fluid homepage-section-row-image"
title="Right to be Forgotten project development"
alt="Right to be Forgotten project development"
loading="lazy"
>
</div>
<div
class="col-xl-9 col-lg-9 col-md-9 col-sm-9 col-12 float-right"
>
<h5>
<span class="fas fa-1x fa-code"></span> Right to be Forgotten project development
</h5>
<p>
The Right to be Forgotten project is open source and we welcome your contributions. If you are a developer and would like to help, use the links below:
</p>
<p>
<a
class="btn btn-warning"
target="_blank"
rel="nofollow noreferrer noopener"
href="https://github.com/rtbf-ir"
title="Project GitHub page"
><span class="fab fa-1x fa-github"></span> Project GitHub page</a
>
<a
class="btn btn-warning"
target="_blank"
rel="nofollow noreferrer noopener"
href="https://github.com/rtbf-ir/rtbf.ir"
title="Project repository"
><span class="fas fa-1x fa-database"></span> Project repository</a
>
<a
class="btn btn-warning"
target="_blank"
rel="nofollow noreferrer noopener"
href="https://github.com/rtbf-ir/rtbf.ir/issues/112"
title="Project roadmap"
><span class="fas fa-1x fa-road"></span> Project roadmap</a
>
</p>
</div>
<div class="clearfix"></div>
</div>
<div
class="homepage-section-row col-xl-12 col-lg-12 col-md-12 col-sm-12 col-12"
>
<div
class="col-xl-5 col-lg-5 col-md-5 col-sm-5 col-12 float-left"
>
<img
src="assets/img/blog.png"
class="img-fluid"
title="Latest Right to be Forgotten blog posts"
alt="Latest Right to be Forgotten blog posts"
loading="lazy"
>
</div>
<div
class="col-xl-7 col-lg-7 col-md-7 col-sm-7 col-12 float-right"
>
<h5>
<span class="fas fa-1x fa-code"></span> Latest Right to be Forgotten blog posts
</h5>
<p class="small text-muted">Blog posts are in Persian. Links below go to the Persian blog.</p>
<ul class="blog-list">
<li>
<a
href="post/dora"
class="text-dark"
title="What is DORA and why does it matter for user data?"
>What is DORA and why does it matter for user data?</a
>
</li>
<li>
<a
href="post/meta-fined-100-million-for-gdpr-violation"
class="text-dark"
title="Meta fined $100 million — another GDPR violation!"
>Meta fined $100 million — another GDPR violation!</a
>
</li>
<li>
<a
href="post/digital-health"
class="text-dark"
title="Digital health and wellness"
>Digital health and wellness</a
>
</li>
<li>
<a
href="post/is-gdpr-cumbersome-for-companies"
class="text-dark"
title="Is GDPR cumbersome for companies?"
>Is GDPR cumbersome for companies?</a
>
</li>
<li>
<a
href="post/information-leak-law-in-iran"
class="text-dark"
title="Information leak law in Iran"
>Information leak law in Iran</a
>
</li>
<li>
<a
href="post/kidfluencers"
class="text-dark"
title="Kidfluencers: children as influencers on social media"
>Kidfluencers: children as influencers on social media</a
>
</li>
<li>
<a
href="post/what-is-the-function-of-my-information-on-the-internet-for-commercial-companies"
class="text-dark"
title="What do commercial companies do with my information online?"
>What do commercial companies do with my information online?</a
>
</li>
<li>
<a
href="post/the-impact-of-privacy-on-peoples-future"
class="text-dark"
title="The impact of privacy on people's future"
>The impact of privacy on people's future</a
>
</li>
<li>
<a
href="post/the-impact-of-privacy-in-the-lives-of-our-children-and-the-internet"
class="text-dark"
title="Privacy in the lives of our children and the internet"
>Privacy in the lives of our children and the internet</a
>
</li>
<li>
<a
href="post/soc"
class="text-dark"
title="What is SOC?"
>What is SOC?</a
>
</li>
<li>
<a
href="post/data-leak"
class="text-dark"
title="What is a data leak?"
>What is a data leak?</a
>
</li>
<li>
<a
href="post/bug-bounty"
class="text-dark"
title="What is Bug Bounty?"
>What is Bug Bounty?</a
>
</li>
<li>
<a
href="post/advantages-and-disadvantages-of-sharing-personal-information-on-the-internet"
class="text-dark"
title="Pros and cons of sharing personal information online"
>Pros and cons of sharing personal information online</a
>
</li>
<li>
<a
href="post/different-techniques-for-protecting-privacy-on-the-internet"
class="text-dark"
title="Techniques for protecting privacy online"
>Techniques for protecting privacy online</a
>
</li>
</ul>
<p>
<a
rel="nofollow noreferrer noopener"
target="_blank"
class="btn btn-warning"
href="https://github.com/rtbf-ir/rtbf.ir/issues/new/choose"
title="Propose new blog content"
><span class="fas fa-1x fa-plus"></span> Propose new blog content</a
>
</p>
</div>
<div class="clearfix"></div>
</div>
</div>
</div>
</div>
</section>
<footer>
<div class="footer">
<div class="footer-sidebar">
<div class="container">
<div class="row">
<div
class="footer-sidebar-section service-detail col-xl-3 col-lg-3 col-md-4 col-sm-12 col-12 text-light text-center"
>
<a href="index-en" title="Right to be Forgotten"
><img
class="img-fluid"
src="assets/img/footer-logo.png"
title="Right to be Forgotten"
alt="Right to be Forgotten"
loading="lazy"
></a>
<nav class="navbar m-auto text-center">
<ul class="nav m-auto text-center">
<li class="nav-item">
<a
title="Join our community"
href="https://t.me/+51BIjll9ZFFhY2Y8"
class="btn btn-light nav-link"
rel="nofollow noreferrer noopener"
target="_blank"
><span class="fas fa-1x fa-users"></span
></a>
</li>
<li class="nav-item">
<a
title="Follow us on Telegram"
href="https://t.me/rtbf_ir"
class="btn btn-light nav-link"
rel="nofollow noreferrer noopener"
target="_blank"
><span class="fab fa-1x fa-telegram"></span
></a>
</li>
<li class="nav-item">
<a
title="Follow us on X (Twitter)"
href="https://x.com/rtbf_ir"
class="btn btn-light nav-link"
rel="nofollow noreferrer noopener"
target="_blank"
><span class="fab fa-1x fa-x-twitter"></span
></a>
</li>
<li class="nav-item">
<a
title="Follow us on Instagram"
href="https://www.instagram.com/rtbf_ir/"
class="btn btn-light nav-link"
rel="nofollow noreferrer noopener"
target="_blank"
><span class="fab fa-1x fa-instagram"></span
></a>
</li>
<li class="nav-item">
<a
title="View project on GitHub"
href="https://github.com/rtbf-ir/rtbf.ir"
class="btn btn-light nav-link"
rel="nofollow noreferrer noopener"
target="_blank"
>
<span class="fab fa-1x fa-github"></span>
</a>
</li>
</ul>
</nav>
</div>
<div
class="footer-sidebar-section col-xl-4 col-lg-4 col-md-4 col-sm-12 col-12 text-light"
>
<h4>How does this service work?</h4>
<p>
Many internet services do not allow you to delete your account. We believe this violates user privacy. Given the right to be forgotten, this is a contradiction.
</p>
<p>
The initial idea for this service came from
<strong
><a
target="_blank"
href="https://backgroundchecks.org/justdeleteme/"
rel="nofollow noreferrer noopener"
title="justdeleteme"
>justdeleteme</a
></strong
>
and we decided to launch it after
<strong
><a
target="_blank"
rel="nofollow noreferrer noopener"
href="https://x.com/nima/status/1398335801042386947"
>this tweet</a
></strong
>.
</p>
<p>
If this domain becomes unavailable, the service will still be accessible at
<strong
><a
href="https://rtbf-ir.github.io/rtbf.ir"
rel="nofollow noreferrer noopener"
title="rtbf.ir"
>this link</a
></strong
>.
</p>
<p>
To contribute,
<strong
><a
target="_blank"
href="https://github.com/rtbf-ir/rtbf.ir"
rel="nofollow noreferrer noopener"
title="rtbf.ir Source"
>do so via GitHub</a
></strong
>.
</p>
<p>Owner: <a href="https://ashokri.com" target="_blank" rel="nofollow noreferrer noopener" title="Amir Shokri"><strong>Amir Shokri</strong></a></p>
</div>
<div
class="footer-sidebar-section col-xl-5 col-lg-5 col-md-4 col-sm-12 col-12 text-light"
>
<h4>Usage guide</h4>
<p>
The colored labels below indicate how difficult it is to delete an account on each website/service:
</p>
<p class="label-buttom">
<span class="btn easy-label text-white">Easy</span> — Simple process
</p>
<p class="label-buttom">
<span class="btn medium-label text-white">Medium</span> — Multiple steps
</p>
<p class="label-buttom">
<span class="btn hard-label text-white">Hard</span> — Requires contacting support
</p>
<p class="label-buttom">
<span class="btn impossible-label text-white">Impossible</span> — Cannot be deleted
</p>
<p>
To add a new service, start
<strong
><a
target="_blank"
href="https://rtbf.ir/issue"
title="rtbf.ir Issues"
>here</a
></strong
>.
</p>
</div>
</div>
</div>
</div>
<div class="copyright">
<div class="container">
<div class="row">
<div class="col-xl-12 col-lg-12 col-md-12 col-sm-12 col-12">
<div class="float-left">
<p>
© <span id="copyrightyear"></span> | This service is
<strong
><a
class="text-dark"
target="_blank"
href="https://github.com/rtbf-ir/rtbf.ir"
rel="nofollow noreferrer noopener"
title="rtbf.ir Source"
>open source</a
></strong
>
and licensed under
<strong
><a
class="text-dark"
target="_blank"
href="https://www.apache.org/licenses/LICENSE-2.0"
rel="nofollow noreferrer noopener"
title="Apache-2.0 License"
>Apache-2.0 License</a
></strong
>
|
<strong
><small
><a
href="https://rtbf.ir/tos"
title="rtbf.ir Terms of service"
class="text-dark"
>Terms of service</a
></small
></strong
>
</p>
</div>
<div class="float-right">
<p>
<span class="text-danger fas fa-1x fa-heart"></span>
<span class="text-brown fas fa-1x fa-coffee"></span>
</p>
</div>
<div class="clearfix"></div>
<p></p>
</div>
</div>
</div>
</div>
</div>
</footer>
<script
src="https://code.jquery.com/jquery-3.6.0.min.js"
integrity="sha256-/xUj+3OJU5yExlq6GSYGSHk7tPXikynS7ogEvDej/m4="
crossorigin="anonymous"
></script>
<script
src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.1/dist/js/bootstrap.bundle.min.js"
integrity="sha384-gtEjrD/SeCtmISkJkNUaaKMoLD0//ElJ19smozuHV6z3Iehds+3Ulb9Bn9Plx0x4"
crossorigin="anonymous"
></script>
<script src="assets/js/copyright.js"></script>
<a
href="https://rtbf.ir/directory"
title="Go to service directory"
rel="nofollow noreferrer noopener"
>
<div id="stickylink">Go to service directory</div>
</a>
</body>
</html>