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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
|
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport"
content="initial-scale=1, width=device-width">
<title>
Terms of Service | Opera
</title>
<meta name="description"
content="
Terms of Service
">
<link rel="dns-prefetch"
href="//www-static.operacdn.com">
<link rel="apple-touch-icon" sizes="180x180" href="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/favicon/apple-touch-icon.f41fd1c7b8eb.png">
<link rel="icon" type="image/png" sizes="32x32" href="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/favicon/favicon-32x32.d80e4bdc6a9f.png">
<link rel="icon" type="image/png" sizes="16x16" href="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/favicon/favicon-16x16.a0ae29f84c8a.png">
<link rel="manifest" href="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/favicon/site.3f73f08fba75.webmanifest">
<link rel="mask-icon" href="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/favicon/safari-pinned-tab.c03376804cdc.svg" color="#ff0a21">
<link rel="shortcut icon" href="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/favicon/favicon.12c955371a4b.ico">
<meta name="msapplication-TileColor" content="#da532c">
<meta name="msapplication-config" content="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/favicon/browserconfig.f5848516ccd3.xml">
<meta name="theme-color" content="#ffffff">
<meta name="robots"
content="noindex, follow">
<meta property="og:title"
content="
Terms of Service | Opera
">
<meta property="og:image"
content="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/og/og-image--2020.e4b5225389d9.jpg">
<meta property="og:description"
content="
Terms of Service
">
<meta property="og:type"
content="website">
<meta property="og:url"
content="https://www.opera.com/terms">
<meta name="twitter:card" content="summary" />
<meta name="twitter:site" content="@opera">
<meta name="twitter:title"
content="Opera Browser">
<meta name="twitter:description"
content="Opera is a secure, innovative browser used by millions around the world with a built-in ad blocker, free VPN, units converter, social messengers, battery saver and much more - all for your best browsing experience. Download Opera browser now and enjoy the Internet once again. Want to know more? Visit opera.com and discover yourself.">
<meta name="twitter:image"
content="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/og/og-image--2020.e4b5225389d9.jpg">
<link rel="stylesheet" href="https://cdn-production-opera-website.operacdn.com/staticfiles/CACHE/css/output.51d659ce51c0.css" type="text/css" media="all" />
<link rel="stylesheet"
type="text/css"
media="all"
href="https://cdn-production-opera-website.operacdn.com/staticfiles/legalDoc.9a1b12c3ff5e.css"/>
<!-- Modified Analytics tracking code with Optimize plugin -->
<script>
(function (i, s, o, g, r, a, m) {
i['GoogleAnalyticsObject'] = r;
i[r] = i[r] || function () {
(i[r].q = i[r].q || []).push(arguments)
}, i[r].l = 1 * new Date();
a = s.createElement(o),
m = s.getElementsByTagName(o)[0];
a.async = 1;
a.src = g;
m.parentNode.insertBefore(a, m)
})(window, document, 'script', 'https://www.google-analytics.com/analytics.js', 'ga');
ga('create', 'UA-4118503-39', 'auto');
ga('require', 'GTM-5HKZ2H4');
</script>
<!-- end Analytics-Optimize Snippet -->
<!-- Google Tag Manager -->
<script>(function (w, d, s, l, i) {
w[l] = w[l] || [];
w[l].push({
'gtm.start':
new Date().getTime(), event: 'gtm.js'
});
var f = d.getElementsByTagName(s)[0],
j = d.createElement(s), dl = l != 'dataLayer' ? '&l=' + l : '';
j.async = true;
j.src =
'https://www.googletagmanager.com/gtm.js?id=' + i + dl;
f.parentNode.insertBefore(j, f);
})(window, document, 'script', 'dataLayer', 'GTM-PRBZ42F');</script>
<!-- End Google Tag Manager -->
</head>
<body class="legal-doc">
<header id="header"
class="hf hf__header">
<div class="hf--primary ">
<div class="hf-wrapper">
<div class="hf--width-holder">
<div class="hf--main-nav"
role="navigation">
<a class="hf--brand"
href="/">
<img src="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/hf-images/logo-header-opera.f98251a69661.png"
srcset="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/hf-images/logo-header-opera.f98251a69661.png 1x, https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/hf-images/logo-header-opera2x.51a1322c5662.png 2x"
alt="Opera">
</a>
<div class="hf--menu">
<input id="hf--menu-switcher"
class="hf-hide"
type="checkbox">
<label class="hf--menu-switcher"
for="hf--menu-switcher">
</label>
<div class="hf--menu-mobile-overlay"></div>
<nav class="hf--menu-nav"
id="hf--m-menu">
<ul class="hf--main-nav-items"
role="menu">
<li class="hf--main-nav-item hf--main-nav-item__expandable">
<input id="hf--submenu-nav-switcher--why-opera"
class="hf-hide hf--submenu-nav-switcher--input"
type="checkbox">
<span class="hf--main-nav-item-tile"
data-menu-item="Why Opera?">Why Opera?</span>
<label class="hf--submenu-nav-switcher--label"
for="hf--submenu-nav-switcher--why-opera">
</label>
<ul class="hf--submenu-nav-items">
<li class="hf--submenu-nav-item">
<a href="/opera-chrome-firefox-comparison">
Opera vs Chrome vs Firefox
</a>
</li>
<li class="hf--submenu-nav-item">
<a href="/case-studies">
Case studies
</a>
</li>
<li class="hf--submenu-nav-item">
<a href="/switch-to-opera">
Switch to Opera
</a>
</li>
</ul>
</li>
<li class="hf--main-nav-item hf--main-nav-item__expandable">
<input id="hf--submenu-nav-switcher--features"
class="hf-hide hf--submenu-nav-switcher--input"
type="checkbox">
<a class="hf--main-nav-item-tile" href="/features"
data-menu-item="Features">Features</a>
<label class="hf--submenu-nav-switcher--label"
for="hf--submenu-nav-switcher--features">
</label>
<ul class="hf--submenu-nav-items">
<li class="hf--submenu-nav-item">
<a href="/features/twitter">
Twitter in the sidebar
</a>
</li>
<li class="hf--submenu-nav-item">
<a href="/features/instagram">
Instagram in the sidebar
</a>
</li>
<li class="hf--submenu-nav-item">
<a href="/features/search-in-tabs">
Search in tabs
</a>
</li>
<li class="hf--submenu-nav-item">
<a href="/features/workspaces">
Workspaces
</a>
</li>
<li class="hf--submenu-nav-item">
<a href="/features/ad-blocker">
Ad blocker
</a>
</li>
<li class="hf--submenu-nav-item">
<a href="/features/messenger">
Integrated messengers
</a>
</li>
<li class="hf--submenu-nav-item">
<a href="/features/snapshot">
Snapshot tool
</a>
</li>
<li class="hf--submenu-nav-item">
<a href="/features/flow">
My Flow
</a>
</li>
<li class="hf--submenu-nav-item">
<a href="/features/video-pop-out">
Video pop-out
</a>
</li>
<li class="hf--submenu-nav-item">
<a href="/features/free-vpn">
Free VPN
</a>
</li>
<li class="hf--submenu-nav-item">
<a href="/features">
See more
</a>
</li>
</ul>
</li>
<li class="hf--main-nav-item hf--main-nav-item__expandable">
<input id="hf--submenu-nav-switcher--computer"
class="hf-hide hf--submenu-nav-switcher--input"
type="checkbox">
<a href="/computer"
class="hf--main-nav-item-tile"
data-menu-item="Computer browsers">Computer browsers</a>
<label class="hf--submenu-nav-switcher--label"
for="hf--submenu-nav-switcher--computer">
</label>
<ul class="hf--submenu-nav-items">
<li class="hf--submenu-nav-item">
<a href="/computer/opera">
Opera
</a>
</li>
<li class="hf--submenu-nav-item">
<a href="/gx">
Opera GX
</a>
</li>
</ul>
</li>
<li class="hf--main-nav-item hf--main-nav-item__expandable">
<input id="hf--submenu-nav-switcher--mobile"
class="hf-hide hf--submenu-nav-switcher--input"
type="checkbox">
<a href="/mobile"
class="hf--main-nav-item-tile"
data-menu-item="Mobile apps">Mobile apps</a>
<label class="hf--submenu-nav-switcher--label"
for="hf--submenu-nav-switcher--mobile">
</label>
<ul class="hf--submenu-nav-items">
<li class="hf--submenu-nav-item">
<a href="/mobile/opera-for-android">
Opera for Android
</a>
</li>
<li class="hf--submenu-nav-item">
<a href="/mobile/touch">
Opera Touch
</a>
</li>
<li class="hf--submenu-nav-item">
<a href="/mobile/mini">
Opera Mini
</a>
</li>
<li class="hf--submenu-nav-item">
<a href="/mobile#news">
Opera News
</a>
</li>
<li class="hf--submenu-nav-item">
<a href="/mobile/basic-phones">
Opera for basic phones
</a>
</li>
</ul>
</li>
<li class="hf--main-nav-item hf--main-nav-item__expandable">
<input id="hf--submenu-nav-switcher--download"
class="hf-hide hf--submenu-nav-switcher--input"
type="checkbox">
<a href="/download"
class="hf--main-nav-item-tile"
data-menu-item="Downloads">Downloads</a>
<label class="hf--submenu-nav-switcher--label"
for="hf--submenu-nav-switcher--download">
</label>
<ul class="hf--submenu-nav-items">
<li class="hf--submenu-nav-item hf--submenu-nav-item__divider">
<span>
Computer browsers
</span>
</li>
<li class="hf--submenu-nav-item hf--submenu-nav-item--download">
<a href="/computer/thanks?ni=stable&os=windows"
class="button os-windows"
data-platform="auto"
rel="nofollow noopener"
target="_blank"
data-alternative="None">
Opera for Windows
</a>
</li>
<li class="hf--submenu-nav-item hf--submenu-nav-item--download">
<a href="/computer/thanks?ni=stable&os=mac"
class="button os-mac"
data-platform="auto"
rel="nofollow noopener"
target="_blank"
data-alternative="None">
Opera for Mac
</a>
</li>
<li class="hf--submenu-nav-item hf--submenu-nav-item--download">
<a href="https://download.opera.com/download/get/?partner=www&opsys=Linux"
class="button os-linux"
data-platform="auto"
rel="nofollow noopener"
target="_blank"
data-alternative="None">
Opera for Linux
</a>
</li>
<li class="hf--submenu-nav-item hf--submenu-nav-item--download">
<a href="/computer/thanks?ni=eapgx&os=windows"
class="button os-windows"
data-platform="auto"
rel="nofollow noopener"
target="_blank"
data-alternative="None">
Opera GX for Windows
</a>
</li>
<li class="hf--submenu-nav-item hf--submenu-nav-item--download">
<a href="/computer/thanks?ni=eapgx&os=mac"
class="button os-mac"
data-platform="auto"
rel="nofollow noopener"
target="_blank"
data-alternative="None">
Opera GX for Mac
</a>
</li>
<li class="hf--submenu-nav-item">
<a href="/download">
All computer browsers
</a>
</li>
<li class="hf--submenu-nav-item hf--submenu-nav-item__divider">
<span>
Mobile apps
</span>
</li>
<li class="hf--submenu-nav-item">
<a href="/download#mobile-apps">
Go to download page
</a>
</li>
</ul>
</li>
</ul>
</nav>
<div class="hf--menu-download">
<span class="download-button--wrapper download-button--desktop
download-button--rounded download-button--full ">
<a href="/computer/thanks?ni=stable&os=windows"
class="button os-windows"
data-platform="auto"
data-event-action="download_opera"
data-event-category="new_floating_header"
rel="nofollow noopener"
data-alternative="None">
Download now
</a>
</span>
</div>
</div>
</div>
</div>
</div>
</div>
</header>
<main class="privacy-page">
<section class="section-main my5">
<div class="wrapper container-fluid">
<p><i>If you live in the European Economic Area, please read this
<a href="/privacy/eea"
rel="nofollow"
target="_self">Terms of Service
</a>
.</i></p>
<h1>Terms of Service</h1>
<p>Last updated: December 14, 2018</p>
<p>Opera Unite Pte. Ltd. and its affiliates offer a number of different services
through their respective websites and software. The terms of this document govern your use of those services.
Please read this document carefully.</p><p><b>1. This is a contract.</b></p>
<p>a. These Terms of Service (“Terms”), along with Opera’s Privacy Statement, form a
legally-binding contract between you and Opera Unite Pte. Ltd., a Singapore company with a registered
address at 8 Burn Road #07-07 Trivex, Singapore 369977, as well as its affiliates (“Opera” and “we,” “us” and
“our”). By using the Services (as defined below), you are agreeing to be legally bound by these Terms. If you
don’t agree with these Terms, you must discontinue using the Services.</p>
<p>b. As used in these Terms, the word “Services” applies to online services provided to you by
Opera through its software applications, websites and APIs.</p>
<p><b>2. We expect you to be a responsible user.</b></p>
<p>a. You agree that you will not use the Services for any purpose that is unlawful or
prohibited by these Terms. You agree to follow all applicable local, state, national, and international laws and
regulations. You are solely responsible for all acts or omissions that occur while using any Services, including
the content of any transmissions you send through the Services and any content you upload or publish using the
Services.</p>
<p>b. We expect you to respect the rights of others. By using the Services, you agree that you
will not upload, transfer, or otherwise make available files, images, code, materials, or other information or
content (“Content”) that violates the rights of any third party, including their intellectual property rights,
however defined.</p>
<p>c. You also agree not to upload, transfer, or otherwise make available any Content that is
obscene, vulgar, sexually-oriented, hateful, or threatening. Opera strictly forbids unsolicited messaging and
unauthorized advertisements while using the Services.</p>
<p>d. Opera has a zero-tolerance policy against child sexual abuse content and will terminate
the access of any user who publishes or distributes child sexual abuse content. Furthermore, we will report such
user to the appropriate authorities.</p>
<p>e. You are responsible for the security of your user account. Certain Services (including
use of Opera’s forums) allow you to create a user account to access to certain Services. You are entirely
responsible for maintaining the confidentiality of your user account and password. Additionally, you are also
responsible for any and all activities that occur under your user account.</p>
<p>f. You acknowledge that information of any kind presented to you via the Services may be
protected by copyright, trademark, patent and/or other proprietary rights and laws. You agree not to violate
these laws or infringe these rights in any way.</p>
<p>g. Certain features of the Services may allow you to publish or send content that can be
viewed by others (“User Generated Content”). You agree that Opera is not liable for User Generated Content that
is provided by others. Opera has no duty to pre-screen User Generated Content, but Opera has the right to refuse
to post, edit, or deliver User Generated Content. Opera reserves the right to remove User Generated Content for
any reason, but Opera is not responsible for any failure or delay in removing such material. Opera reserves the
right to block any user’s access to any content, website or webpage at our sole discretion.</p>
<p>h. Opera does not claim ownership of any User Generated Content. However, by submitting User
Generated Content on any Service, including any ideas, concepts, know-how, or techniques described therein, you
consent to Opera’s unrestricted use of those items.</p>
<p>i. If you upload any Content or User Generated Content to Opera’s sites, you warrant that
you have the necessary rights and authority to do so, including the necessary consent to upload and distribute
any personal information about third persons. You agree that you will not upload viruses or other forms of
malware.</p>
<p><b>3. Details.</b> For clarity, and consistent with the rest of these Terms, here are
further details on specific Services that may be available through the Opera websites or software applications.
</p><p>a. Extension catalog: Opera may offer a portfolio of third party browser extensions and
themes (“Add-Ons”). Opera exercises no editorial control over the Add-Ons that you access through this Service.</p>
<p>b. Compression: Opera’s software applications include compression functionality to enable
users to boost the download of web content such as webpages and/or videos. This functionality requests web
content through Opera’s proxy or compression servers. Your browsing experience may change due to increased
loading speeds. Certain webpages may not be available through proxy servers.</p>
<p>c. News recommendations: Opera’s software applications may include a current news feed
feature to help you discover and access news content made available by third parties on the internet. Opera
exercises no editorial control over any content that you access through this Service.</p>
<p>d. Synchronization: Opera allows you to enable synchronization of browser data such as your
speed dials between Opera browsers on the devices you are using. This Service requires that you login to a
social network service or create an Opera account.</p>
<p>e. Contextual hints: Opera’s browser for computers may include “Browser Assistant”, a
component that provides contextual hints about certain Opera browser features and other useful information which
you might be interested in. Browser Assistant is an optional component of the software.</p>
<p>f. Virtual Private Network: Through Opera’s browser for computers you may have access to a
virtual private network (“VPN”). Consistent with other provisions of these terms, you agree not to use the VPN
service in a manner that violates applicable law or otherwise infringes any third party’s rights. Opera does not
guarantee that VPN service will always be available. The VPN feature is not an end-to-end service and it does
not guarantee that any transmissions of information made while using VPN will be secure. Note that certain
websites may not be accessible while using VPN.</p>
<p>g. Snapshot: Opera’s browser for computers may include functions that enable you to easily
take screenshots of content viewed through the browser. This feature is for your personal, non-commercial use
only. You agree never to use the feature in any way that violates applicable law, or the rights of any third
party, including copyrights.</p>
<p>h. Virtual Reality functions: Opera’s browser for computers may include functions that
facilitate access to virtual reality content using your virtual reality hardware. Your use of any virtual
reality hardware and related services are governed by separate terms and conditions. Opera is not responsible
for your use of your hardware, or for any virtual reality content produced by third parties.</p>
<p><b>4. The Services are provided without any warranties or guarantees.</b> Opera does
not guarantee that your use of the Services will be problem free. Although we work hard to provide the highest
quality software and services, we cannot and do not guarantee that they will work perfectly every time or in
every respect.</p>
<p>a. The Services are provided “as is” without warranties of any kind. Opera and/or its
respective suppliers hereby disclaim all warranties and conditions with regard to the Services, including all
implied warranties and conditions of merchantability, fitness for a particular purpose, title, and
non-infringement.</p>
<p>b. Opera does not represent or warrant that the Services will be uninterrupted or error
free, that defects will be corrected, or that the Services or the server that makes them available are free of
viruses or other harmful components.</p>
<p>c. In compliance with local law, certain Services and websites may not be available in some
countries.</p>
<p><b>5. Certain Services are provided by third parties.</b> Some Services accessible
through the Opera software applications are provided by other companies (“Third Party Services”). Third Party
Services may be subject to separate terms and conditions. These Third Party Services may include the following:
</p>
<p>a. Geolocation API: A geolocation service provided by Google LLC. By using the service you
accept Google’s Terms of Service available at
<a href="https://policies.google.com/terms"
rel="nofollow noopener"
target="_self">https://policies.google.com/terms
</a>
; and
</p>
<p>b. WhatsApp: A messaging service provided by WhatsApp, Inc., whose terms of use are
available at
<a href="https://www.whatsapp.com/legal"
rel="nofollow noopener"
target="_self">https://www.whatsapp.com/legal
</a>
; and
</p>
<p>c. Messenger: A messaging service provided by Facebook, Inc., whose terms of use are
available at
<a href="https://www.facebook.com/legal/terms"
rel="nofollow noopener"
target="_self">https://www.facebook.com/legal/terms
</a>
; and
</p>
<p>d. Yandex.Zen: A content aggregation/recommendation service offered by Yandex Services AG
and its affiliates. By using the Yandex.Zen service, you accept the Yandex.Zen Terms of Use published at
<a href="https://yandex.com/legal/zen_termsofuse"
rel="nofollow noopener"
target="_self">https://yandex.com/legal/zen_termsofuse
</a>
.
</p>
<p><b>6. Your access to the Services is subject to change.</b> Opera reserves the right at
any time to modify or discontinue the Services in whole or in part, and to terminate your access to the Services
at any time, with or without notice. You agree that Opera shall not be liable to you or to any third party for
any modification, suspension or discontinuance of the Services. Opera may also terminate or suspend your user
account for inactivity, which is defined as failing to sign-in to the Services for an extended period of time,
as determined by Opera. Opera reserves the right to assign its rights and responsibilities under these Terms to
any third party.</p>
<p><b>7. Links to the Third Party Sites are available through the Services.</b> The
Services may contain links to other websites (“Third Party Sites”), as well as articles, photographs, text,
graphics, pictures, designs, music, sound, video, information, applications, software, and other content or
items belonging to or originating from third parties (“Third Party Content”). Opera has no control over and no
responsibility for Third Party Sites or Third Party Content. Inclusion of, linking to, or permitting the use or
installation of any Third Party Site or any Third Party Content does not imply approval or endorsement thereof
by Opera.</p>
<p><b>8. Our Services are ad-supported.</b> All our Services are generally provided free
of charge. Opera incurs substantial development, collocation and bandwidth expenses in doing this. To support
our business and continue providing you with the Services for free, we will display the advertisements of select
partners to you. By using our Services, you consent to the placement of such advertisements within the Services.
</p>
<p><b>9. Opera is not responsible for any damages you may incur as a result of your use of the
Services.</b></p>
<p>a. You agree that Opera shall not be responsible for unauthorized access to or alteration of
your transmissions or data, any material or data sent or received or not sent or received, or any transactions
entered into through the Services.</p>
<p>b. You agree that Opera is not responsible or liable for any threatening, defamatory,
obscene, offensive, or illegal content or conduct of any other party or any infringement of another’s rights,
including intellectual property rights. You specifically agree that Opera is not responsible for any content
sent using and/or included in the Services by any third party.</p>
<p>c. In no event shall Opera and/or its suppliers be liable for any direct, indirect,
punitive, incidental, special, consequential damages, or any damages whatsoever including, without limitation,
damages for loss of use, data, or profits, arising out of or in any way connected with the use or performance of
the Services, with the delay or inability to use the Services, the provision of or failure to provide any
Services, or for any information, software, products, services, and related graphics obtained through the
Services, or otherwise arising out of the use of the Services, whether based on contract, tort, negligence,
strict liability, or otherwise, even if opera or any of its suppliers has been advised of the possibility of
damages. Because some states/jurisdictions do not allow the exclusion or limitation of liability for
consequential or incidental damages, the above limitation may not apply in every instance. If you are
dissatisfied with any portion of the Services, or with any of these terms, your sole and exclusive remedy is to
discontinue using the Services and related websites.</p>
<p>d. You agree to indemnify and hold Opera, its parents, subsidiaries, affiliates, officers,
and employees, harmless from any claim, demand, or damage, including reasonable attorneys’ fees, asserted by any
third party due to or arising out of your use of or conduct on the Services.</p>
<p><b>10. We need you to respect our trademarks.</b> The Opera word mark and the Opera,
Opera News, and “O” logos are trademarks of Opera Software AS (a Norwegian company) in Singapore, Norway, the
European Union and other countries. You agree that all such trademarks, trade names, service marks and other
Opera logos and brand features, and product and service names are trademarks and the property of Opera Software
AS (the “Opera Marks”). Without prior written permission, you agree not to display or use the Opera Marks in any
manner.</p>
<p><b>11. These Terms are based on English law.</b> These Terms will be governed by the
laws of England and Wales, without giving effect to any conflicts of law principles that may require the
application of the laws of a different country. Any and all disputes arising out of or in connection with these
Terms, including any question regarding its existence, validity or termination, shall be referred to and finally
resolved by arbitration in English in accordance with the UNCITRAL Arbitration Rules for the time being in force
at the commencement of the arbitration. The place of arbitration shall be Singapore before a tribunal of three
arbitrators, one to be appointed by each of the parties and the third by the two so chosen, unless the parties
have agreed to the appointment of a sole arbitrator. The parties agree that the seat of the arbitration shall
remain in London. Notwithstanding this, you agree that Opera shall still be allowed to apply for injunctive
remedies (or an equivalent type of urgent legal relief) in any jurisdiction. If any provision of these Terms is
determined by a court of competent jurisdiction to be invalid, illegal, or unenforceable, the remaining
provisions of these Terms shall not be affected or impaired thereby.</p>
<p><b>12. Opera may modify these Terms.</b> Opera may update these Terms or the Privacy
Statement from time to time. The current version of these Terms are posted at
<a href="https://www.opera.com/terms"
rel="nofollow"
target="_self">https://www.opera.com/terms
</a>
. The Privacy Statement is posted at
<a href="https://www.opera.com/privacy"
rel="nofollow"
target="_self">https://www.opera.com/privacy
</a>
. It is your responsibility to remain informed of any changes, because you are legally obligated to abide by the
latest versions of these Terms and the Privacy Statement. You may not assign or transfer your rights under these
Terms without obtaining Opera’s prior written consent, and any purported assignment or transfer in violation of
this section will be null and void.
</p>
<p><b>13. Notice to rights holders.</b> If you believe that any content accessible via the
Services infringes your rights, you may submit a notification to Opera in which you provide the following
information: (a) identification of the rights/works that are being infringed upon; (b) identification of the
content that is infringing your rights (including URL(s) for the content); (c) your name, address, telephone
number, and electronic mail address; (d) a statement that you have a good faith belief that use of the content
in the manner complained of is not authorized by the rights holder, its agent, or the law; (e) a statement that
the information in the notification is accurate and, under penalty of perjury, that you are authorized to act on
behalf of the owner of an exclusive right that is allegedly infringed; and (f) your physical or electronic
signature, or that of a person authorized to act on your behalf, of the owner of an exclusive right that is
allegedly infringed. Notices may be sent to
<a href="mailto:copyright@opera.com"
rel="nofollow"
target="_self">copyright@opera.com
</a>
.
</p><p>ADDITIONAL CRYPTO WALLET TERMS</p>
<p>Opera’s crypto wallet Service provides self-hosted, user controlled services related to
Ethereum and related cryptographically secured tokens (“Crypto Currency”). While commonly referred to as a
“wallet”, it is important for you to understand that, unlike cash in a physical wallet, Crypto Currency is not
stored in the wallet.</p>
<p>Our wallet Service stores a key pair (an address or public key, as well as an encrypted
private key). The key pair enables you to communicate with Ethereum-based blockchains (“Ethereum Networks”)
through our wallet Service and without requiring you to download or install additional software to your device.
Any Crypto Currency, however, is stored, sent and received by and within the relevant Ethereum Network. The
wallet Service facilitates your communications with and use of these Ethereum Networks.</p>
<p>Ethereum Networks are peer-to-peer networks supported by third parties. In order to be
completed, all proposed transactions must be confirmed and recorded in the Crypto Currency’s associated network.
We have no control over the Ethereum Networks and, therefore, cannot and do not ensure that any transaction
details that you submit will be confirmed and processed, or that this will occur in a timely manner. You should
carefully asses the Ethereum Network and Crypto Currency with which you choose to transact. Use of our wallet
Service is subject to these Terms of Service, including the following:</p>
<p><b>a. Create or Import a Wallet.</b> To use this Service, you must either import an
existing wallet or create a new wallet. If you create a new wallet, you will be assigned a key pair consisting
of a public key (or address) for your wallet, as well as an encrypted private key. You will also be assigned a
human readable, mnemonic pass phrase (“Backup Phrase”) for use in accessing your encrypted private key.</p>
<p><b>b. Write Down Your Backup Phrase.</b> When creating a new wallet, you will be
prompted to write down your Backup Phrase. Your wallet does not receive or store your Backup Phrase. Neither
your key pair nor the Backup Phrase is available to us. We cannot, therefore, assist you with key pair or Backup
Phrase retrieval. We cannot generate a new Backup Phrase for your wallet. You accept and acknowledge that any
Crypto Currency you have associated with your wallet address will become inaccessible if you do not have your
Backup Phrase. We also strongly encourage users to take a backup of their Backup Phrase as well as their key
pair on an external medium.</p>
<p><b>c. Keep Your Backup Phrase Secure.</b> The Backup Phrase can be used to unlock your
encrypted private key, which is stored in a separate file on your device. The private key is connected to your
wallet’s public address and, together, they can be used to authorize the transfer of Crypto Currency to and from
that address. You will be responsible for maintaining the confidentiality of your Backup Phrase, and will be
fully responsible for any and all activities that occur using such Backup Phrase.</p>
<p><b>d. You are Responsible to Manage Your Crypto Currency.</b> Once transaction details
have been submitted to an Ethereum Network it is not possible to cancel or otherwise modify your transaction. We
have no control over any Ethereum Network and we do not have the ability to facilitate any cancellation or
modification request. You must ensure that you have adequate Crypto Currency associated with your wallet address
before initiating a transaction.</p>
<p><b>e. You Must Comply With the Law.</b> You can only use our wallet Service if
permitted under the laws of your jurisdiction. Please make sure that your use of the wallet Service are in
compliance with all laws, rules, and regulations that apply to you. It is your responsibility to determine what,
if any, taxes apply to your Crypto Currency transactions, and it is your responsibility to report and remit the
correct tax to the appropriate tax authority where applicable. We are not responsible for determining whether
taxes apply to your transactions or for collecting, reporting, withholding, or remitting any taxes arising from
any of your transactions.</p>
</div>
</section>
</main>
<footer class="hf hf__footer">
<div class="breadcrumbs hf-wrapper">
<div class="breadcrumbs__container">
<div class="breadcrumbs__crumb breadcrumbs__logo">
<a href="/">
<img src="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/hf-images/opera-logo-flat-footer-breadcrumbs.435bcaf06ca6.svg"
alt="Opera">
</a>
</div>
<div class="breadcrumbs__crumb">
<a href="/terms">
Terms
</a>
</div>
</div>
</div>
<div class="hf__footer__content hf-wrapper hf__columns">
<div class="hf__company-box">
<div>
<a class="hf--brand"
href="/">
<img src="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/logo/logo-and-name.9b6ebb613c99.png"
alt="Opera">
</a>
</div>
<div>
<h4 class="hf__heading">
<span class="hf__label"> Opera Norway AS </span>
</h4>
<div>
<p class="hf__address">
Vitaminveien 4<br>
NO-0485 OSLO
</p>
</div>
</div>
<div>
<h4 class="hf__heading">
<span class="hf__label"> Follow Opera </span>
</h4>
<div class="hf__social-icons ">
<div class="hf__social-box">
<ul class="hf__social-icons">
<li>
<a class="facebook"
href="https://www.facebook.com/Opera/"
rel="noopener nofollow"
target="_blank"
title="Opera - Facebook">
<span class="hf-hide">Opera - Facebook</span>
</a>
</li>
<li>
<a class="twitter"
href="https://twitter.com/opera"
rel="noopener nofollow"
target="_blank"
title="Opera - Twitter">
<span class="hf-hide">Opera - Twitter</span>
</a>
</li>
<li>
<a class="youtube"
href="https://www.youtube.com/opera"
rel="noopener nofollow"
target="_blank"
title="Opera - Youtube">
<span class="hf-hide">Opera - Youtube</span>
</a>
</li>
<li>
<a class="linkedin"
href="https://www.linkedin.com/company/opera-software"
rel="noopener nofollow"
target="_blank"
title="Opera - LinkedIn">
<span class="hf-hide">Opera - LinkedIn</span>
</a>
</li>
<li>
<a class="instagram"
href="https://www.instagram.com/opera/"
rel="noopener nofollow"
target="_blank"
title="Opera - Instagram">
<span class="hf-hide">Opera - Instagram</span>
</a>
</li>
</ul>
</div>
</div>
</div>
</div>
<div class="hf__links-box-wrapper hf__columns">
<div class="hf__links-box">
<input id="hf-services-switcher"
class="hf__dd-switcher hf-hide"
type="checkbox">
<h4 class="hf__heading">
<label class="hf__label"
for="hf-services-switcher">Services</label>
</h4>
<div class="hf__dd-content">
<ul class="hf__links">
<li>
<a class="hf__link"
href="https://addons.opera.com"
target="_blank">Addons</a>
</li>
<li>
<a class="hf__link"
href="https://auth.opera.com"
target="_blank"
rel="nofollow noopener">Opera account</a>
</li>
<li>
<a class="hf__link"
href="https://addons.opera.com/wallpapers"
target="_blank">Wallpapers</a>
</li>
<li>
<a class="hf__link"
href="/ads"
target="_blank">Opera Ads</a>
</li>
</ul>
</div>
</div>
<div class="hf__links-box">
<input id="hf-help-switcher"
class="hf__dd-switcher hf-hide"
type="checkbox">
<h4 class="hf__heading">
<label class="hf__label"
for="hf-help-switcher">Help</label>
</h4>
<div class="hf__dd-content">
<ul class="hf__links">
<li>
<a class="hf__link"
href="/help">Help & support</a>
</li>
<li>
<a class="hf__link"
href="https://blogs.opera.com"
target="_blank">Opera blogs</a>
</li>
<li>
<a class="hf__link"
href="https://forums.opera.com"
target="_blank">Opera forums</a>
</li>
<li>
<a class="hf__link"
href="https://dev.opera.com/"
target="_blank">Dev.Opera</a>
</li>
<li>
<a class="hf__link"
href="https://help.opera.com/en/faq/"
target="_blank">FAQ</a>
</li>
</ul>
</div>
</div>
<div class="hf__links-box">
<input id="hf-legal-switcher"
class="hf__dd-switcher hf-hide"
type="checkbox">
<h4 class="hf__heading">
<label class="hf__label"
for="hf-legal-switcher">Legal</label>
</h4>
<div class="hf__dd-content">
<ul class="hf__links">
<li>
<a class="hf__link"
href="https://security.opera.com"
target="_blank"
rel="nofollow">Security</a>
</li>
<li>
<a class="hf__link"
href="/privacy"
rel="nofollow">Privacy</a>
</li>
<li>
<a class="hf__link"
href="/privacy/cookies"
rel="nofollow">Cookie policy</a>
</li>
<li>
<a class="hf__link"
href="/eula"
rel="nofollow">EULA
</a>
</li>
<li>
<a class="hf__link"
href="/terms"
rel="nofollow">Terms of Use</a>
</li>
</ul>
</div>
</div>
<div class="hf__links-box">
<input id="hf-company-switcher"
class="hf__dd-switcher hf-hide"
type="checkbox">
<h4 class="hf__heading">
<label class="hf__label"
for="hf-company-switcher">Company</label>
</h4>
<div class="hf__dd-content">
<ul class="hf__links">
<li>
<a class="hf__link"
href="/about">About Opera</a>
</li>
<li>
<a class="hf__link"
href="/newsroom">Press info</a>
</li>
<li>
<a class="hf__link"
href="https://jobs.opera.com/"
target="_blank">Jobs</a>
</li>
<li>
<a class="hf__link"
href="https://investor.opera.com/"
target="_blank">Investors</a>
</li>
<li>
<a class="hf__link"
href="/b2b">Become a partner</a>
</li>
<li>
<a class="hf__link"
href="/contact">Contact us</a>
</li>
</ul>
</div>
</div>
</div>
</div>
<div class="hf-wrapper hf__bottom">
<div class="hf__company-box">
<p class="hf__company-box__copy text-level-5">© 1995-2020 Opera Norway </p>
<p class="hf__company-box__copy text-level-5">All rights reserved</p>
</div>
<div class="hf__lang-box center-xs end-lg">
<form action="/i18n/setlang/"
method="post"><input type="hidden" name="csrfmiddlewaretoken" value="JmUDu8sUVKW7OIJWxcTF1t1NawkYpiUZXjPa6xoL9UbWl5R4ZrvAT0p6r1pIvhVO">
<input name="next"
type="hidden"
value="/terms"/>
<select id="hf__lang-selector"
class="hf__lang-selector"
name="language"
onchange="this.form.submit()">
<option value="en"
selected="selected">
English
</option>
<option value="ar">
العربيّة
</option>
<option value="de">
Deutsch
</option>
<option value="es">
Español
</option>
<option value="es-419">
Español Latinoamérica
</option>
<option value="fr">
Français
</option>
<option value="id">
Bahasa Indonesia
</option>
<option value="it">
Italiano
</option>
<option value="ja">
日本語
</option>
<option value="ko">
한국어
</option>
<option value="no">
Norsk
</option>
<option value="pl">
Polski
</option>
<option value="pt">
Português
</option>
<option value="pt-br">
Português Brasileiro
</option>
<option value="ru">
Русский
</option>
<option value="tr">
Türkçe
</option>
<option value="uk">
Українська
</option>
<option value="vi">
Tiếng Việt
</option>
<option value="zh-cn">
简体中文
</option>
</select>
</form>
</div>
</div>
</footer>
<div id="cookie-consent"
class="cookie-consent">
<div class="container-fluid wrapper">
<div class="row middle-xs">
<div class="col-xs-12 col-md-9">
<input id="cookie-consent-expander"
class="cookie-consent__expander-input"
type="checkbox">
<p class="cookie-consent__head mb1">
<label for="cookie-consent-expander"
class="text-level-3"><b>Free cookies 🍪</b></label>
<label for="cookie-consent-expander"
class="cookie-consent__expander-icon"></label>
</p>
<p class="cookie-consent__body text-level-4">
We are always working to improve your experience on our website. Part of this involves using cookies to collect anonymous data for statistics and personalization. Further information can be found in our <a rel="nofollow" href="/privacy">Privacy Statement</a> and <a rel="nofollow" href="/privacy/cookies">Cookies Policy</a>.
</p>
</div>
<p class="col-xs-12 col-md-3">
<span class="btn btn--light btn--black text-transform--uppercase cookie-consent__btn">
OK, I accept
</span>
</p>
</div>
</div>
</div>
<script type="text/javascript" src="https://cdn-production-opera-website.operacdn.com/staticfiles/CACHE/js/output.3e9eca6ed5b4.js"></script>
<!-- Google Tag Manager (noscript) -->
<noscript>
<iframe src="https://www.googletagmanager.com/ns.html?id=GTM-PRBZ42F"
height="0"
width="0"
style="display:none;visibility:hidden"></iframe>
</noscript>
<!-- End Google Tag Manager (noscript) -->
</body>
</html>
|