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
|
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport"
content="initial-scale=1, width=device-width">
<title>
EULA Opera for computers | Opera
</title>
<meta name="description"
content="
This EULA constitutes a contract between you and Opera. You may not use the Software if you do not accept the
terms in this EULA. By downloading and/or using the Software, you agree to be bound by all the terms and
conditions set forth in this EULA.
">
<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="
EULA Opera for computers | 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="
This EULA constitutes a contract between you and Opera. You may not use the Software if you do not accept the
terms in this EULA. By downloading and/or using the Software, you agree to be bound by all the terms and
conditions set forth in this EULA.
">
<meta property="og:type"
content="website">
<meta property="og:url"
content="https://www.opera.com/eula/computers">
<link rel="stylesheet" href="https://cdn-production-opera-website.operacdn.com/staticfiles/CACHE/css/output.c529793154fa.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="/secure-private-browser">
Security
</a>
</li>
<li class="hf--submenu-nav-item">
<a href="/customize-browser">
Customization
</a>
</li>
<li class="hf--submenu-nav-item">
<a href="/fast-browser">
Fast browsing
</a>
</li>
<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/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">
Flow
</a>
</li>
<li class="hf--submenu-nav-item">
<a href="/features/units-converter">
Unit converters
</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/bookmarks">
Bookmarks
</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/news-reader">
Personal news
</a>
</li>
<li class="hf--submenu-nav-item">
<a href="/features/battery-saver">
Battery saver
</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">
<a href="/computer/thanks?ni=stable&os=windows" rel="nofollow">
Opera for Windows
</a>
</li>
<li class="hf--submenu-nav-item">
<a href="/computer/thanks?ni=stable&os=mac" rel="nofollow">
Opera for Mac
</a>
</li>
<li class="hf--submenu-nav-item">
<a href="https://download.opera.com/download/get/?partner=www&opsys=Linux" rel="nofollow">
Opera for Linux
</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#opera-for-mobile-devices">
Opera for Android
</a>
</li>
<li class="hf--submenu-nav-item">
<a href="/download#opera-for-mobile-devices">
Opera Mini
</a>
</li>
<li class="hf--submenu-nav-item">
<a href="/download#opera-for-mobile-devices">
Opera Touch
</a>
</li>
<li class="hf--submenu-nav-item">
<a href="/download#opera-for-mobile-devices">
Opera for basic phones
</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"
data-alternative="None"
itemprop="downloadURL">
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 don't live in the European Economic Area, please read this</i>
<a href="/eula/computers/row"
rel="nofollow">End User License Agreement
</a>
.
</p>
<h1>End User License Agreement</h1><h2>Opera for Computers</h2>
<p>Last updated: December 14, 2018</p>
<p>This end user license agreement (“EULA”) governs your download and/or use of the executable code for the Opera for
Computers desktop software application, including any update or upgrade thereto (“Software”). This EULA forms a
binding contract between you and Opera Software AS, a Norwegian company with an address at P.O. Box 4214 Nydalen,
NO-0401 Oslo, Norway (“Opera”).</p>
<h3>Terms & Conditions</h3>
<p><b>1. This is a contract.</b> This EULA constitutes a contract between you and Opera. You may not use the
Software if you do not accept the terms in this EULA. By downloading and/or using the Software, you agree to be
bound by all the terms and conditions set forth in this EULA. If you are under thirteen (13) years of age, or at
least thirteen (13) years of age but a minor where you live, you must have your parent or legal guardian accept this
EULA on your behalf and approve your use of the Software.</p>
<p><b>2. You are only granted a limited license to use the Software.</b> Subject to the terms and conditions of
this EULA, Opera hereby grants you a personal, limited, non-exclusive, non-transferable, non-sublicensable license
to:</p>
<p>(A) use the executable code version of the Software solely as installed on your personal computer; and</p>
<p>(B) reproduce and distribute the Software solely as included in an application repository for a desktop open source
operating system distribution PROVIDED THAT in all cases the Software is distributed: (i) without modification; (ii)
free of charge to end-users; and (iii) with a copy of this EULA. Distribution for embedded open source operating
systems is not permitted. For the avoidance of doubt, the Software must be distributed without modification
(including as to the default search engine(s) in the Software settings), both at the time of distribution as well as
after the Software is installed.</p>
<p>You may only use the Software as expressly authorized in this Section 2.</p>
<p><b>3. You must respect our rights in the Software.</b> Unless expressly permitted by law, you may not copy,
decompile, reverse engineer, disassemble, attempt to derive the source code of, modify, or create derivative works
of the Software. You may not remove, obscure, or alter any copyright notice or other proprietary rights notices
affixed to or contained within the Software. You may not separate the component programs of the Software for use on
different computers or sublicense, lease, rent, loan, or distribute the Software to any third party. You may not
permit, direct or authorize any third party to take any action with respect to the Software which is inconsistent
with the terms set forth in this EULA.</p>
<p><b>4. The Software contains our valuable intellectual property.</b> You acknowledge and agree that the Software,
including its sequence, structure, organization, source code and applicable documentation, contains valuable trade
secrets and other intellectual property of Opera and its suppliers. The Software is licensed and not sold to you,
and no title or ownership to such Software or the intellectual property rights embodied therein is granted to you.
The Software is the exclusive property of Opera and its suppliers, and all rights in and to the Software not
expressly granted to you in this Agreement are reserved. Nothing in this EULA will be deemed to grant, by
implication, estoppel or otherwise, a license under any existing or future patents of Opera, except to the extent
necessary for you to use the Software as expressly permitted under this EULA. You acknowledge and agree that any
actual or threatened breach of this EULA will constitute immediate, irreparable harm to Opera for which monetary
damages would be an inadequate remedy, and that injunctive relief is an appropriate remedy for any such breach or
violation.</p>
<p><b>5. Components from third parties may be delivered along with the Software.</b> The Software is delivered
along with certain software components provided by third parties (“Third Party Software”). Opera shall not be
responsible for any such Third-Party Software. Third-Party Software, particularly open source software, may be
subject to separate license terms included with, or contained in the setup installation segments of such Third-Party
Software. The terms set forth in this EULA do not apply to Third-Party Software to the extent they are inconsistent
with such Third-Party Software licenses. This EULA governs your use of the Software in executable form. Source code
for any open source Third-Party Software delivered along with the Software can be obtained at
<a href="http://sourcecode.opera.com"
rel="nofollow"
target="_self">http://sourcecode.opera.com
</a> or by sending an email message to
<a href="mailto:opensource@opera.com"
target="_self">opensource@opera.com
</a>
.
</p>
<p><b>6. The Software may provide for access to additional services.</b> Various services may be offered where
available via or as integrated into the Software (“Services”). By using any such Services, you agreed to the terms
of service at
<a href="/terms"
target="_self"
rel="nofollow">https://www.opera.com/terms
</a> (“Terms of Service”). The Terms of Service are incorporated into this EULA by this reference. As is more
fully explained in the Terms of Service, some Services are offered by Opera, others by third parties (which may be
subject to separate terms – please refer to the Terms of Service for more information). Opera reserves the right at
any time and from time to time to modify or discontinue, temporarily or permanently, the Services (or any part
thereof) 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.
</p>
<p><b>7. Our Software and Services are ad-supported.</b> The Software is free to download and 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 Software and Services for free, we will display
the advertisements of select partners to you. By using our Software and Services, you consent to the placement of
such advertisements within the Software and Services.</p>
<p><b>8. Your privacy is important to us.</b> Opera takes the protection and security of its users’ information
very seriously and will treat any and all such information in accordance with our privacy statement, which is
currently posted at
<a href="/privacy"
rel="nofollow"
target="_self">https://www.opera.com/privacy
</a> (“Privacy Statement”). The Privacy Statement is incorporated into this EULA by this reference. You agree
to the use of your data in accordance with Opera’s Privacy Statement.
</p>
<p><b>9. Your license to use the Software terminates if you breach this EULA.</b> This EULA will commence upon your
download of the Software and continue in perpetuity unless terminated earlier as provided herein. This EULA will
immediately terminate upon your breach of any of the terms or conditions set forth herein. Upon the termination of
the EULA, you will discontinue all use of the Software, promptly destroy or have destroyed the Software and any
copies thereof, and, upon request by Opera, certify in writing that such destruction has taken place. These remedies
are cumulative and in addition to any other remedies which may be available. Section 1, as well as Sections 3
through 14 of this EULA shall survive termination.</p>
<p><b>10. The Software is provided without any warranties or guarantees.</b> THE SOFTWARE IS PROVIDED “AS IS”, AND
OPERA DISCLAIMS ALL WARRANTIES WITH REGARD TO THE SOFTWARE WHETHER EXPRESS, IMPLIED OR STATUTORY, INCLUDING WITHOUT
LIMITATION THE IMPLIED WARRANTIES OF TITLE, NON-INFRINGEMENT, MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE OR
USE, SATISFACTORY QUALITY, OR QUIET ENJOYMENT. OPERA DOES NOT WARRANT THAT THE USE OF THE SOFTWARE WILL BE
UNINTERRUPTED OR ERROR FREE OR THAT THE SOFTWARE DOES NOT CONTAIN ANY VIRUSES. THIS WARRANTY DISCLAIMER IS A
FUNDAMENTAL ELEMENT OF THE BASIS OF THE BARGAIN BETWEEN YOU AND OPERA. OPERA WOULD NOT PROVIDE THE SOFTWARE ABSENT
SUCH DISCLAIMER. NO REPRESENTATIONS OR WARRANTIES ARE MADE BY ANY OF OPERA’S CUSTOMERS OR SUPPLIERS UNDER OR BY
VIRTUE OF THIS AGREEMENT. IF YOU ARE DISSATISFIED WITH ANY PORTION OF THE SOFTWARE, OR WITH ANY OF THESE TERMS, YOUR
SOLE AND EXCLUSIVE REMEDY IS TO DISCONTINUE USING THE SOFTWARE.</p>
<p><b>11. Opera is not liable for any damages you may incur.</b> IN NO EVENT SHALL OPERA, ITS AFFILIATES, OR THEIR
RESPECTIVE SUPPLIERS OR CUSTOMERS BE LIABLE FOR ANY INCIDENTAL, SPECIAL, CONSEQUENTIAL, OR INDIRECT DAMAGES OF ANY
KIND (INCLUDING WITHOUT LIMITATION DAMAGES FOR INTERRUPTION OF BUSINESS, LOST DATA, LOST PROFITS, OR THE LIKE)
REGARDLESS OF THE FORM OF ACTION, WHETHER IN CONTRACT, TORT (INCLUDING WITHOUT LIMITATION NEGLIGENCE), PRODUCT
LIABILITY, OR OTHER THEORY, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. IN NO EVENT WILL THE CUMULATIVE
LIABILITY OF OPERA ARISING OUT OF OR RELATED TO THIS AGREEMENT EXCEED THE AMOUNT PAID TO OPERA IN RESPECT OF THE
SOFTWARE GIVING RISE TO THE CLAIM OR, IF NO FEES WERE PAID, THEN FIVE HUNDRED EUROS. SOME JURISDICTIONS DO NOT ALLOW
THE EXCLUSION OR LIMITATION OF INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO THE FOREGOING EXCLUSION AND LIMITATION MAY
NOT APPLY TO YOU. THIS LIMITATION OF LIABILITY WILL APPLY NOTWITHSTANDING THE FAILURE OF ESSENTIAL PURPOSE OF ANY
LIMITED REMEDY SET FORTH HEREIN. THIS LIMITATION OF LIABILITY IS A FUNDAMENTAL ELEMENT OF THE BASIS OF THE BARGAIN
BETWEEN YOU AND OPERA. OPERA WOULD NOT PROVIDE THE SOFTWARE TO YOU ABSENT SUCH LIMITATION.</p>
<p><b>12. This contract is based on Norwegian law.</b> This EULA will be governed by the laws of Norway without
giving effect to any conflicts of law principles that may require the application of the laws of a different
country. The United Nations Convention on Contracts for the International Sale of Goods does not apply to this
Agreement. All actions or proceedings arising under or related to this Agreement must be brought in the Oslo City
Court, and you hereby agree to irrevocably submit to the exclusive jurisdiction and venue of any such court in all
such actions or proceedings. 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 this
EULA is determined by a court of competent jurisdiction to be invalid, illegal, or unenforceable, the remaining
provisions of this EULA shall not be affected or impaired thereby.</p>
<p><b>13. Opera may modify these Terms.</b> Opera may update the terms of this EULA, the Privacy Statement or the
Terms of Service. The current version of this EULA is posted at
<a rel="nofollow"
href="/eula/computers">https://www.opera.com/eula/computers
</a>
, the latest version of the Privacy Statement is posted at
<a rel="nofollow"
href="/privacy"
target="_self">https://www.opera.com/privacy
</a>
, and the Terms of Service are posted at
<a href="/terms"
rel="nofollow"
target="_self">https://www.opera.com/terms
</a>
. It is your responsibility to remain informed of any changes as you are bound by the latest version of the EULA,
Privacy Statement and Terms of Service.
</p>
<p><b>14. General.</b> You acknowledge and agree that the Software may contain cryptographic functionality the
export of which may be restricted under applicable export control law. You will comply with all applicable laws and
regulations in your activities with regard to the Software. You will not export or re-export the Software in
violation of such laws or regulations or without all required licenses and authorizations. You may not assign or
transfer this contract without obtaining Opera’s prior written consent, and any purported assignment or transfer in
violation of this restriction will be null and void.</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="/eula">
End-user license agreements
</a>
</div>
<div class="breadcrumbs__crumb">
<a href="/eula/computers/eea">
Computers
</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-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 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-4">© 1995-2020 Opera Norway </p>
<p class="hf__company-box__copy text-level-4">All rights reserved</p>
</div>
<div class="hf__lang-box center-xs end-md">
<form action="/i18n/setlang/"
method="post"><input type="hidden" name="csrfmiddlewaretoken" value="X14PJbbISenGTzUk4diVKVUWEAhJowT7j22V5hogNECiMluwvBEdmayKuuA4G0O9">
<input name="next"
type="hidden"
value="/eula/computers"/>
<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.e1d132f10db6.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>
|