This repository has been archived by the owner on Jan 10, 2021. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 26
/
index-test.html
1668 lines (1579 loc) · 71.2 KB
/
index-test.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="en">
<head>
<meta charset="utf-8">
<title>Terms of Service; Didn't Read</title>
<meta name="description"
content="Terms of Service; Didn't Read (ToS;DR) is an active project to fix the biggest lie on the web. We help you understand the Terms and Conditions and Privacy Policies of websites.">
<meta name="author" content="ToS;DR Team">
<!--[if lt IE 9]><script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script><![endif]-->
<link href="css/bootstrap.css" rel="stylesheet">
<link href="css/bootstrap-responsive.css" rel="stylesheet">
<link href="css/custom.css" rel="stylesheet">
<link rel="shortcut icon" href="img/tosdr-icon-16.png">
<link rel="apple-touch-icon-precomposed" sizes="144x144" href="img/tosdr-icon-144.png">
<link rel="apple-touch-icon-precomposed" sizes="114x114" href="img/tosdr-icon-114.png">
<link rel="apple-touch-icon-precomposed" sizes="72x72" href="img/tosdr-icon-72.png">
<link rel="apple-touch-icon-precomposed" href="img/tosdr-icon-57.png">
<!-- Browser Donations: Flattr -->
<meta name="flattr:id" content="qjjrw5">
<!-- Browser Donations: LedgerLoops -->
<link rel="ledger" href="wss://monetization-hubbie.herokuapp.com">
<!-- Browser Donations: Coil -->
<meta name="monetization" content="$twitter.xrptipbot.com/michielbdejong" />
<script src="js/jquery-1.7.1.min.js"></script>
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0">
<!--http://j.mp/mobileviewport-->
</head>
<body id="index-html" data-spy="scroll">
<div class="navbar navbar-fixed-top" id="menu-options">
<div class="navbar-inner">
<div class="container">
<button type="button" class="btn btn-navbar" data-toggle="collapse" data-target=".nav-collapse">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="brand" href="#"><img src="img/tosdr-icon-16.png" alt=""
style="vertical-align:baseline;margin-right:.5em;" class="logo" />Terms of Service; Didn't Read</a>
<div class="nav-collapse collapse">
<ul class="nav">
<li class=""><a href="#services">Ratings</a></li>
<!-- <li class=""><a href="#classification">Classification</a></li>-->
<!-- <li class=""><a href="#workinprogress">Progress</a></li>-->
<li class=""><a href="https://tosdr.org/about.html">About</a></li>
<!-- <li class=""><a href="#categories">Categories</a></li>-->
</ul>
<!-- <p class="pull-right">-->
<!-- <a href="#funding" class="btn btn-success btn-mini" style="position:absolute;">Donate</a>-->
<!-- </p>-->
<p class="pull-right follow-us">
Follow us <a href="http://twitter.com/tosdr">@tosdr</a>
Donate: <a href="https://opencollective.com/tosdr" target="_blank">On OpenCollective</a>
</p>
</div>
</div>
</div>
</div>
<div class="hero-unit">
<section class="container">
<div class="page-header">
<h1><img src="img/tosdr-logo.png" alt="Terms of Service; Didn't Read" width="960" height="328" /></h1>
</div>
<h2>“<strong>I have read and agree to the Terms</strong>” is the biggest lie on the web. We aim
to fix that.</h2>
</section>
</div>
<!--hero-unit-->
<div class="container" id="tosdr-content" role="main">
<section id="intro">
<p>We are a user rights <a href="about.html" title="Learn more about us">initiative</a> to <a
href="classification.html" title="What's our classification?">rate and label</a> website terms & privacy
policies, from very good <span class="label A">Class A</span> to very bad <span
class="label E">Class E</span>.</p>
<p>Terms of service are often <strong>too long to read</strong>, but it's important to understand what's in them.
Your rights online depend on them.
<!--Get informed about your rights: install the browser extension for <a href="https://addons.mozilla.org/en-US/firefox/addon/terms-of-service-didnt-read/">Firefox</a>, <a href="https://chrome.google.com/webstore/detail/hjdoplcnndgiblooccencgcggcoihigg">Chrome</a>, <a href="https://addons.opera.com/extensions/details/terms-of-service-didnt-read/">Opera</a> or <a href="http://safariextension.tosdr.org/">Safari</a>.</p-->We
hope that our ratings can help you get informed abour your rights. Do not hesitate to click <a
href="#services">on a service below</a>, to have more details! You can also get the ratings directly in your
browser by installing our web browser add-on:</p>
</section>
<section id="further">
<p><a href="downloads.html" class="btn btn-large btn-success">Download browser add-on</a>
<!-- TODO alternative download link and alternative browser name addon/extension depending on browser used; otherwise just use canonical downloads.html link-->
</p>
<ul class="masthead-links">
<li><a href="contribute.html">Contribute</a></li>
<li><a href="api.html">Develop</a></li>
<li><a href="http://group.tosdr.org">Join the group</a></li>
</ul>
</section>
<section>
<div id="inthenews">
<a
href="http://moneyland.time.com/2012/08/10/new-site-grades-those-pesky-terms-of-service-agreements-you-never-read/"><img
src="img/time.png" alt="Time"></a>
<a href="http://gigaom.com/2012/08/14/i-agree-why-terms-of-service-report-cards-are-a-good-idea/"><img
src="img/gigaom.gif" alt="GigaOM"></a>
<a href="http://www.theverge.com/2012/8/14/3241572/tos-dr-terms-of-service"><img src="img/verge.png"
alt="The Verge"></a>
<a
href="http://www.lemonde.fr/technologies/article/2012/08/14/un-site-veut-mettre-fin-au-mensonge-des-conditions-d-utilisation-sur-internet_1745942_651865.html"><img
src="img/lemondefr.png" alt="Le Monde"></a>
<a href="http://www.zeit.de/digital/internet/2012-08/terms-of-service-did-not-read"><img src="img/zeit.png"
alt="Die Zeit"></a>
</div>
<hr />
<p>
<a href="https://tosdr.org/blog/index.html" style="font-weight:700">Latest blog</a>
(<a href="https://tosdr.org/blog/feed.rss">RSS Feed</a>)
</p>
<ul id="blog-index">
<li id="2013-06-17">
<time datetime="Mon Jun 17 11:20:00 +0200 2013">17 Jun 2013</time>
<a href="blog/tosdr-in-action-owned.html">ToS;DR in Action: “What is yours stays yours”: Oh, really?</a>
by
<span class="authors">
<img src="img/hugo.png" alt="" class="avatar" />
Hugo Roy
</span>
</li>
<li id="2013-06-10">
<time datetime="Mon Jun 10 16:53:00 +0200 2013">10 Jun 2013</time>
<a href="blog/tosdr-in-action-i-have-read-and-agree.html">ToS;DR in Action: “I have read and agree to the
terms”</a>
by
<span class="authors">
<img src="img/hugo.png" alt="" class="avatar" />
Hugo Roy
</span>
</li>
<li id="2013-06-09">
<time datetime="Sat Jun 9 23:37:00 +0200 2013">9 Jun 2013</time>
<a href="blog/suzanne-youtube.html">YouTube's Terms of Service</a>
by
<span class="authors">
<img src="img/suzanne.png" alt="" class="avatar" />
Suzanne Azmayesh
</span>
</li>
</ul>
</section>
<section id="services">
<h2 class="page-header">Ratings</h2>
<div class="row">
<div id="filter-by" class="span3">
<ul class="nav nav-pills">
<li class="active"><a href="#services">Services</a></li>
<li><a href="https://tosdr.org/topics.html#topics">Topics</a></li>
</ul>
</div>
<div id="filter-services" class="span9">
<div id="searchDiv" style="display:none">
<form class="form-search">
<div class="input-prepend">
<a href="#services" class="btn">Search</a>
<input class="input-xlarge search-query" id="searchBox" size="16" type="text"
placeholder="e.g. facebook, twitter, search…">
</div>
</form>
</div>
</div>
</div>
<!-- ##services-content## -->
<div id="services-list" class="row">
<div data-search="facebook,social network,diaspora,Facebook,facebook.com," id="facebook-tosdr"
class="span6 service-nutshell">
<h3>
<img src="logo/facebook.png" class="favlogo">
<a class="modal-link" data-service-name="facebook" href="#">
Facebook
</a>
<div id="Facebook-rating" class="service-rating">
<a title="Learn more about our classification" href="classification.html">
<span class="label false">
No Class Yet
</span>
</a>
</div>
</h3>
<section class="specificissues">
<ul class="tosdr-points">
<li id="point-facebook-VTlWfubfib4">
<span class="badge badge-success" title="">
<i class="icon-thumbs-up icon-white"> + </i>
</span>
You can give your feedback before changes
</li>
<li id="point-facebook-kizrN7qb1Ck">
<span class="badge badge-warning" title="">
<i class="icon-thumbs-down icon-white"> - </i>
</span>
Very broad copyright license on your content
</li>
<li id="point-facebook-s98UR0Jx6Z4">
<span class="badge badge-warning" title="">
<i class="icon-thumbs-down icon-white"> - </i>
</span>
Facebook automatically shares your data with many other services
</li>
</ul>
<a class="modal-link" data-service-name="facebook" href="#">
<i class="icon icon-th-list"></i> More details
</a>
<!-- add link to read full terms of services -->
</section>
</div>
<div data-search="google,[object Object],[object Object],Google,google.com," id="google-tosdr"
class="span6 service-nutshell">
<h3>
<img src="logo/google.png" class="favlogo">
<a class="modal-link" data-service-name="google" href="#">
Google
</a>
<div id="Google-rating" class="service-rating">
<a title="Learn more about our classification" href="classification.html">
<span class="label C">
Class C
</span>
</a>
</div>
</h3>
<section class="specificissues">
<ul class="tosdr-points">
<li id="point-google-2xvjZf1mgd0">
<span class="badge badge-warning" title="">
<i class="icon-thumbs-down icon-white"> - </i>
</span>
Google keeps the rights on your content when you stop using it
</li>
<li id="point-google-HUL_4wIbNGY">
<span class="badge badge-success" title="">
<i class="icon-thumbs-up icon-white"> + </i>
</span>
Google posts notice of changes, with a 14-day ultimatum.
</li>
<li id="point-google-JcGg9TPZ7V0">
<span class="badge badge-neutral" title="">
<i class="icon-asterisk icon-white"> ⋅ </i>
</span>
Jurisdiction in California
</li>
<li id="point-google-PD5ZWzgv2RI">
<span class="badge badge-success" title="">
<i class="icon-thumbs-up icon-white"> + </i>
</span>
Google enables you to get your information out when a service is discontinued
</li>
<li id="point-google-QZgR8faRWDU">
<span class="badge badge-warning" title="">
<i class="icon-thumbs-down icon-white"> - </i>
</span>
Google can share your personal information with other parties
</li>
</ul>
<a class="modal-link" data-service-name="google" href="#">
<i class="icon icon-th-list"></i> More details
</a>
<!-- add link to read full terms of services -->
</section>
</div>
<div data-search="youtube,video,videos,dailymotion,vimeo,YouTube,youtube.com,google" id="youtube-tosdr"
class="span6 service-nutshell">
<h3>
<img src="logo/youtube.png" class="favlogo">
<a class="modal-link" data-service-name="youtube" href="#">
YouTube
</a>
<div id="YouTube-rating" class="service-rating">
<a title="Learn more about our classification" href="classification.html">
<span class="label D">
Class D
</span>
</a>
</div>
</h3>
<section class="specificissues">
<ul class="tosdr-points">
<li id="point-youtube-1ZGIHsbyaFU">
<span class="badge badge-neutral" title="">
<i class="icon-asterisk icon-white"> ⋅ </i>
</span>
Users are subject to Google's Privacy Policy
</li>
<li id="point-youtube-4738ex5PI1g">
<span class="badge badge-warning" title="">
<i class="icon-thumbs-down icon-white"> - </i>
</span>
They can remove your content at any time and without prior notice
</li>
<li id="point-youtube-4cB69IsKX_E">
<span class="badge badge-warning" title="">
<i class="icon-thumbs-down icon-white"> - </i>
</span>
The copyright license is broader than necessary
</li>
<li id="point-youtube-CsxjRy5fqYQ">
<span class="badge badge-success" title="">
<i class="icon-thumbs-up icon-white"> + </i>
</span>
They help you to deal with take-down notices
</li>
<li id="point-youtube-FeR7Kxzqii8">
<span class="badge badge-neutral" title="">
<i class="icon-asterisk icon-white"> ⋅ </i>
</span>
Jurisdiction and law of California
</li>
</ul>
<a class="modal-link" data-service-name="youtube" href="#">
<i class="icon icon-th-list"></i> More details
</a>
<!-- add link to read full terms of services -->
</section>
</div>
<div data-search="wikipedia,,,Wikipedia,wikipedia.org," id="wikipedia-tosdr" class="span6 service-nutshell">
<h3>
<img src="logo/wikipedia.png" class="favlogo">
<a class="modal-link" data-service-name="wikipedia" href="#">
Wikipedia
</a>
<div id="Wikipedia-rating" class="service-rating">
<a title="Learn more about our classification" href="classification.html">
<span class="label false">
No Class Yet
</span>
</a>
</div>
</h3>
<section class="specificissues">
<ul class="tosdr-points">
<li id="point-wikipedia-8muChbk0S-A">
<span class="badge badge-success" title="">
<i class="icon-thumbs-up icon-white"> + </i>
</span>
You publish your contributions under free licenses
</li>
<li id="point-wikipedia-NA_buKmTvoE">
<span class="badge badge-success" title="">
<i class="icon-thumbs-up icon-white"> + </i>
</span>
You can give comments before changes
</li>
<li id="point-wikipedia-qui-0ATIaX4">
<span class="badge badge-success" title="">
<i class="icon-thumbs-up icon-white"> + </i>
</span>
Wikipedia uses temporary session cookies
</li>
</ul>
<a class="modal-link" data-service-name="wikipedia" href="#">
<i class="icon icon-th-list"></i> More details
</a>
<!-- add link to read full terms of services -->
</section>
</div>
<div data-search="microsoft,,[object Object],Microsoft,microsoft.com," id="microsoft-tosdr"
class="span6 service-nutshell">
<h3>
<img src="logo/microsoft.png" class="favlogo">
<a class="modal-link" data-service-name="microsoft" href="#">
Microsoft
</a>
<div id="Microsoft-rating" class="service-rating">
<a title="Learn more about our classification" href="classification.html">
<span class="label false">
No Class Yet
</span>
</a>
</div>
</h3>
<section class="specificissues">
<ul class="tosdr-points">
<li id="point-microsoft-6Rb57dXnJVQ">
<span class="badge badge-important" title="">
<i class="icon-remove icon-white"> × </i>
</span>
Lawsuit and class action waiver. Arbitration for dispute resolution in the United States
</li>
</ul>
<a class="modal-link" data-service-name="microsoft" href="#">
<i class="icon icon-th-list"></i> More details
</a>
<!-- add link to read full terms of services -->
</section>
</div>
<div data-search="twitter,,[object Object],twitter,twitter.com," id="twitter-tosdr"
class="span6 service-nutshell">
<h3>
<img src="logo/twitter.png" class="favlogo">
<a class="modal-link" data-service-name="twitter" href="#">
twitter
</a>
<div id="twitter-rating" class="service-rating">
<a title="Learn more about our classification" href="classification.html">
<span class="label false">
No Class Yet
</span>
</a>
</div>
</h3>
<section class="specificissues">
<ul class="tosdr-points">
<li id="point-twitter--B4iO-9xHvg">
<span class="badge badge-warning" title="">
<i class="icon-thumbs-down icon-white"> - </i>
</span>
Critical changes to the terms with little users' involvement
</li>
<li id="point-twitter-OR7vkW34mm4">
<span class="badge badge-neutral" title="">
<i class="icon-asterisk icon-white"> ⋅ </i>
</span>
Twitter does not require cookies to function
</li>
<li id="point-twitter-X6_GxyBSVnE">
<span class="badge badge-success" title="">
<i class="icon-thumbs-up icon-white"> + </i>
</span>
Twitter deletes tracking data in 10 days and offers an opt-out
</li>
<li id="point-twitter-damOWTFaho0">
<span class="badge badge-neutral" title="">
<i class="icon-asterisk icon-white"> ⋅ </i>
</span>
Twitter provide archives of their terms
</li>
<li id="point-twitter-e0F4cavaJ4Q">
<span class="badge badge-warning" title="">
<i class="icon-thumbs-down icon-white"> - </i>
</span>
Twitter deletes your account after 30 days. It keeps the rights on your content.
</li>
</ul>
<a class="modal-link" data-service-name="twitter" href="#">
<i class="icon icon-th-list"></i> More details
</a>
<!-- add link to read full terms of services -->
</section>
</div>
<div data-search="amazon,commerce,shop,,Amazon,amazon.com," id="amazon-tosdr" class="span6 service-nutshell">
<h3>
<img src="logo/amazon.png" class="favlogo">
<a class="modal-link" data-service-name="amazon" href="#">
Amazon
</a>
<div id="Amazon-rating" class="service-rating">
<a title="Learn more about our classification" href="classification.html">
<span class="label false">
No Class Yet
</span>
</a>
</div>
</h3>
<section class="specificissues">
<ul class="tosdr-points">
<li id="point-amazon-E58aPtzP3jk">
<span class="badge badge-warning" title="">
<i class="icon-thumbs-down icon-white"> - </i>
</span>
Amazon tracks you on other websites
</li>
<li id="point-amazon-OegfPmV8ugo">
<span class="badge badge-warning" title="">
<i class="icon-thumbs-down icon-white"> - </i>
</span>
Amazon enables third-party advertisers to target you by default
</li>
</ul>
<a class="modal-link" data-service-name="amazon" href="#">
<i class="icon icon-th-list"></i> More details
</a>
<!-- add link to read full terms of services -->
</section>
</div>
<div data-search="wordpress-com,,[object Object],Wordpress.com,wordpress.com," id="wordpress-com-tosdr"
class="span6 service-nutshell">
<h3>
<img src="logo/wordpress-com.png" class="favlogo">
<a class="modal-link" data-service-name="wordpress-com" href="#">
Wordpress.com
</a>
<div id="Wordpress.com-rating" class="service-rating">
<a title="Learn more about our classification" href="classification.html">
<span class="label false">
No Class Yet
</span>
</a>
</div>
</h3>
<section class="specificissues">
<ul class="tosdr-points">
<li id="point-wordpress-com-kizrN7qb1Ck5">
<span class="badge badge-success" title="">
<i class="icon-thumbs-up icon-white"> + </i>
</span>
Limited copyright license to Wordpress.com including for promotion
</li>
</ul>
<a class="modal-link" data-service-name="wordpress-com" href="#">
<i class="icon icon-th-list"></i> More details
</a>
<!-- add link to read full terms of services -->
</section>
</div>
<div data-search="flickr,[object Object],[object Object],Flickr,flickr.com,[object Object]" id="flickr-tosdr"
class="span6 service-nutshell">
<h3>
<img src="logo/flickr.png" class="favlogo">
<a class="modal-link" data-service-name="flickr" href="#">
Flickr
</a>
<div id="Flickr-rating" class="service-rating">
<a title="Learn more about our classification" href="classification.html">
<span class="label false">
No Class Yet
</span>
</a>
</div>
</h3>
<section class="specificissues">
<ul class="tosdr-points">
<li id="point-flickr-K1M7Vj1W1VM">
<span class="badge badge-success" title="">
<i class="icon-thumbs-up icon-white"> + </i>
</span>
Flickr lets you choose a copyright license
</li>
<li id="point-flickr-U11qApwNL2M">
<span class="badge badge-neutral" title="">
<i class="icon-asterisk icon-white"> ⋅ </i>
</span>
Users are subject to Yahoo!'s terms
</li>
<li id="point-flickr-sZ6MVIwA-tE">
<span class="badge badge-success" title="">
<i class="icon-thumbs-up icon-white"> + </i>
</span>
You can chose with whom you share your photo
</li>
</ul>
<a class="modal-link" data-service-name="flickr" href="#">
<i class="icon icon-th-list"></i> More details
</a>
<!-- add link to read full terms of services -->
</section>
</div>
<div data-search="netflix,,,netflix,https://signup.netflix.com/," id="netflix-tosdr"
class="span6 service-nutshell">
<h3>
<img src="logo/netflix.png" class="favlogo">
<a class="modal-link" data-service-name="netflix" href="#">
netflix
</a>
<div id="netflix-rating" class="service-rating">
<a title="Learn more about our classification" href="classification.html">
<span class="label false">
No Class Yet
</span>
</a>
</div>
</h3>
<section class="specificissues">
<ul class="tosdr-points">
<li id="point-netflix-L5pl0Vn9lKY">
<span class="badge badge-neutral" title="">
<i class="icon-asterisk icon-white"> ⋅ </i>
</span>
Terms and privacy policy pages are organized and formatted well.
</li>
</ul>
<a class="modal-link" data-service-name="netflix" href="#">
<i class="icon icon-th-list"></i> More details
</a>
<!-- add link to read full terms of services -->
</section>
</div>
<div data-search="instagram,,,Instagram,instagram.com," id="instagram-tosdr" class="span6 service-nutshell">
<h3>
<img src="logo/instagram.png" class="favlogo">
<a class="modal-link" data-service-name="instagram" href="#">
Instagram
</a>
<div id="Instagram-rating" class="service-rating">
<a title="Learn more about our classification" href="classification.html">
<span class="label false">
No Class Yet
</span>
</a>
</div>
</h3>
<section class="specificissues">
<ul class="tosdr-points">
<li id="point-instagram-wy9QcF5zQII">
<span class="badge badge-warning" title="">
<i class="icon-thumbs-down icon-white"> - </i>
</span>
Very broad copyright license on your content
</li>
</ul>
<a class="modal-link" data-service-name="instagram" href="#">
<i class="icon icon-th-list"></i> More details
</a>
<!-- add link to read full terms of services -->
</section>
</div>
<div data-search="rapidshare,,,Rapidshare,," id="rapidshare-tosdr" class="span6 service-nutshell">
<h3>
<img src="logo/rapidshare.png" class="favlogo">
<a class="modal-link" data-service-name="rapidshare" href="#">
Rapidshare
</a>
<div id="Rapidshare-rating" class="service-rating">
<a title="Learn more about our classification" href="classification.html">
<span class="label false">
No Class Yet
</span>
</a>
</div>
</h3>
<section class="specificissues">
<ul class="tosdr-points">
<li id="point-rapidshare--BdGb47IMyM">
<span class="badge badge-success" title="">
<i class="icon-thumbs-up icon-white"> + </i>
</span>
4 weeks to review changes for paying users
</li>
<li id="point-rapidshare-CYxkhPROM0U">
<span class="badge badge-success" title="">
<i class="icon-thumbs-up icon-white"> + </i>
</span>
Rapidshare uses personal information for limited purposes
</li>
<li id="point-rapidshare-DWrWnxYqe48">
<span class="badge badge-success" title="">
<i class="icon-thumbs-up icon-white"> + </i>
</span>
Rapidshare does not index or open the files
</li>
<li id="point-rapidshare-Ytlp8YaeBr4">
<span class="badge badge-success" title="">
<i class="icon-thumbs-up icon-white"> + </i>
</span>
Rapidshare guarantees 99.5% availability
</li>
<li id="point-rapidshare-hlI-572bFho">
<span class="badge badge-success" title="">
<i class="icon-thumbs-up icon-white"> + </i>
</span>
Rapidshare won't share information to a requesting authority without a legal basis
</li>
</ul>
<a class="modal-link" data-service-name="rapidshare" href="#">
<i class="icon icon-th-list"></i> More details
</a>
<!-- add link to read full terms of services -->
</section>
</div>
<div data-search="soundcloud,,[object Object],SoundCloud,soundcloud.com/," id="soundcloud-tosdr"
class="span6 service-nutshell">
<h3>
<img src="logo/soundcloud.png" class="favlogo">
<a class="modal-link" data-service-name="soundcloud" href="#">
SoundCloud
</a>
<div id="SoundCloud-rating" class="service-rating">
<a title="Learn more about our classification" href="classification.html">
<span class="label B">
Class B
</span>
</a>
</div>
</h3>
<section class="specificissues">
<ul class="tosdr-points">
<li id="point-soundcloud--tqWw03UPoc">
<span class="badge badge-success" title="">
<i class="icon-thumbs-up icon-white"> + </i>
</span>
6 weeks to review changes
</li>
<li id="point-soundcloud-3f3dVPCa1GU">
<span class="badge badge-success" title="">
<i class="icon-thumbs-up icon-white"> + </i>
</span>
Collected personal data used for limited purposes
</li>
<li id="point-soundcloud-3f3dVPCa1GU2">
<span class="badge badge-warning" title="">
<i class="icon-thumbs-down icon-white"> - </i>
</span>
Personal information can be disclosed in case of business transfer or insolvency
</li>
<li id="point-soundcloud-_gI8wQ3PZ2M">
<span class="badge badge-success" title="">
<i class="icon-thumbs-up icon-white"> + </i>
</span>
You stay in control of your copyright
</li>
<li id="point-soundcloud-fmlKouXKUcc">
<span class="badge badge-success" title="">
<i class="icon-thumbs-up icon-white"> + </i>
</span>
The terms are easy to read
</li>
</ul>
<a class="modal-link" data-service-name="soundcloud" href="#">
<i class="icon icon-th-list"></i> More details
</a>
<!-- add link to read full terms of services -->
</section>
</div>
<div data-search="github,,[object Object],GitHub,github.com," id="github-tosdr" class="span6 service-nutshell">
<h3>
<img src="logo/github.png" class="favlogo">
<a class="modal-link" data-service-name="github" href="#">
GitHub
</a>
<div id="GitHub-rating" class="service-rating">
<a title="Learn more about our classification" href="classification.html">
<span class="label B">
Class B
</span>
</a>
</div>
</h3>
<section class="specificissues">
<ul class="tosdr-points">
<li id="point-github-2vIh4l7sTnk">
<span class="badge badge-success" title="">
<i class="icon-thumbs-up icon-white"> + </i>
</span>
Transparent security practices
</li>
<li id="point-github-8LDE2ZPXRW4">
<span class="badge badge-success" title="">
<i class="icon-thumbs-up icon-white"> + </i>
</span>
GitHub will notify you before transferring your information in the event of a merger or
acquisition
</li>
<li id="point-github-9epXl7ZDb7c">
<span class="badge badge-warning" title="">
<i class="icon-thumbs-down icon-white"> - </i>
</span>
Changes can happen any time, sometimes without notice
</li>
<li id="point-github-gyMiAkV5ZG0">
<span class="badge badge-neutral" title="">
<i class="icon-asterisk icon-white"> ⋅ </i>
</span>
GitHub requires cookies
</li>
<li id="point-github-hI5Too_uDVk">
<span class="badge badge-warning" title="">
<i class="icon-thumbs-down icon-white"> - </i>
</span>
Your account can be suspended and your data deleted any time for any reason
</li>
</ul>
<a class="modal-link" data-service-name="github" href="#">
<i class="icon icon-th-list"></i> More details
</a>
<!-- add link to read full terms of services -->
</section>
</div>
<div data-search="twitpic,,[object Object],Twitpic,twitpic.com," id="twitpic-tosdr"
class="span6 service-nutshell">
<h3>
<img src="logo/twitpic.png" class="favlogo">
<a class="modal-link" data-service-name="twitpic" href="#">
Twitpic
</a>
<div id="Twitpic-rating" class="service-rating">
<a title="Learn more about our classification" href="classification.html">
<span class="label E">
Class E
</span>
</a>
</div>
</h3>
<section class="specificissues">
<ul class="tosdr-points">
<li id="point-twitpic-4Zh8gx9IyDc">
<span class="badge badge-important" title="">
<i class="icon-remove icon-white"> × </i>
</span>
Twitpic takes credit for your content
</li>
<li id="point-twitpic-Rt4zuPdx3qs">
<span class="badge badge-warning" title="">
<i class="icon-thumbs-down icon-white"> - </i>
</span>
Your content is for Twitpic and their partners
</li>
<li id="point-twitpic-V_RVXG7TKEA">
<span class="badge badge-neutral" title="">
<i class="icon-asterisk icon-white"> ⋅ </i>
</span>
Jurisdiction in Delaware
</li>
<li id="point-twitpic-b6ryqY9NdMw">
<span class="badge badge-important" title="">
<i class="icon-remove icon-white"> × </i>
</span>
Deleted images are not really deleted
</li>
<li id="point-twitpic-dCfx1aMH1Tw">
<span class="badge badge-warning" title="">
<i class="icon-thumbs-down icon-white"> - </i>
</span>
Reduction of legal period for cause of action
</li>
</ul>
<a class="modal-link" data-service-name="twitpic" href="#">
<i class="icon icon-th-list"></i> More details
</a>
<!-- add link to read full terms of services -->
</section>
</div>
<div data-search="delicious,,,Delicious,delicious.com," id="delicious-tosdr" class="span6 service-nutshell">
<h3>
<img src="logo/delicious.png" class="favlogo">
<a class="modal-link" data-service-name="delicious" href="#">
Delicious
</a>
<div id="Delicious-rating" class="service-rating">
<a title="Learn more about our classification" href="classification.html">
<span class="label D">
Class D
</span>
</a>
</div>
</h3>
<section class="specificissues">
<ul class="tosdr-points">
<li id="point-delicious-0oKZG_o_Zu0">
<span class="badge badge-warning" title="">
<i class="icon-thumbs-down icon-white"> - </i>
</span>
Only for personal and non-commercial use
</li>
<li id="point-delicious-LbwpukmRtgg">
<span class="badge badge-important" title="">
<i class="icon-remove icon-white"> × </i>
</span>
No Right to leave the service
</li>
<li id="point-delicious-aXOIDbzevYE">
<span class="badge badge-warning" title="">
<i class="icon-thumbs-down icon-white"> - </i>
</span>
Non-transparent use of cookies and third party ads
</li>
<li id="point-delicious-lJGsikCSEJ8">
<span class="badge badge-warning" title="">
<i class="icon-thumbs-down icon-white"> - </i>
</span>
Your personal information are an asset for business transfers
</li>
<li id="point-delicious-t-INoE6fH98">
<span class="badge badge-warning" title="">
<i class="icon-thumbs-down icon-white"> - </i>
</span>
Very broad copyright license on your content, includes right for Delicious to distribute through
any media
</li>
</ul>
<a class="modal-link" data-service-name="delicious" href="#">
<i class="icon icon-th-list"></i> More details
</a>
<!-- add link to read full terms of services -->
</section>
</div>
<div data-search="500px,,flickr,500px,500px.com," id="500px-tosdr" class="span6 service-nutshell">
<h3>
<img src="logo/500px.png" class="favlogo">
<a class="modal-link" data-service-name="500px" href="#">
500px
</a>
<div id="500px-rating" class="service-rating">
<a title="Learn more about our classification" href="classification.html">
<span class="label D">
Class D
</span>
</a>
</div>
</h3>
<section class="specificissues">
<ul class="tosdr-points">
<li id="point-500px-3uiIrLyj8Hw">
<span class="badge badge-warning" title="">
<i class="icon-thumbs-down icon-white"> - </i>
</span>
Waiver of legal actions
</li>
<li id="point-500px-X99SUnV7RUs">
<span class="badge badge-warning" title="">
<i class="icon-thumbs-down icon-white"> - </i>
</span>
Broad copyright license
</li>
<li id="point-500px-ozS1etNH7ZA">
<span class="badge badge-important" title="">
<i class="icon-remove icon-white"> × </i>
</span>
500px Store: Authorship
</li>
<li id="point-500px-wYFqcvOn7XY">
<span class="badge badge-success" title="">
<i class="icon-thumbs-up icon-white"> + </i>
</span>
The terms are easy to read
</li>
<li id="point-500px-wYFqcvOn7XY2">
<span class="badge badge-important" title="">
<i class="icon-remove icon-white"> × </i>
</span>
500px Store: your account can be terminated at any time
</li>
</ul>
<a class="modal-link" data-service-name="500px" href="#">
<i class="icon icon-th-list"></i> More details
</a>
<!-- add link to read full terms of services -->
</section>
</div>
<div data-search="gravatar,,,Gravatar,gravatar.com," id="gravatar-tosdr" class="span6 service-nutshell">
<h3>
<img src="logo/gravatar.png" class="favlogo">
<a class="modal-link" data-service-name="gravatar" href="#">
Gravatar
</a>
<div id="Gravatar-rating" class="service-rating">
<a title="Learn more about our classification" href="classification.html">
<span class="label false">
No Class Yet
</span>
</a>
</div>
</h3>
<section class="specificissues">
<ul class="tosdr-points">
<li id="point-gravatar-Kj5tyqxJkz4">
<span class="badge badge-success" title="">