This repository has been archived by the owner on Nov 6, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprivacy.html
1267 lines (1109 loc) · 53.2 KB
/
privacy.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">
<meta name="viewport"
content="initial-scale=1, width=device-width">
<title>
Privacy Statement | Opera
</title>
<meta name="description"
content="
Privacy Statement
">
<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="
Privacy Statement | 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="
Privacy Statement
">
<meta property="og:type"
content="website">
<meta property="og:url"
content="https://www.opera.com/privacy">
<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="/privacy/row"
rel="nofollow">Privacy Statement
</a>
.
</p>
<h1>Privacy Statement</h1>
<p>Last updated on August 9, 2019.</p>
<h2>Introduction</h2>
<p>This is the privacy statement of Opera Software AS (“Opera”), an Opera group company. The
statement applies to all Opera software applications, websites and services.</p>
<p>As a general rule, users of our software applications and services are anonymous to us, and
we have no feasible ways to identify you. However certain categories of data may be collected while using our
applications and services, and some of this information may be considered “personal data” by the law. When we
collect personal data, we generally act as a “data controller” as defined in applicable law. The exact
categories of data we collect, why we collect it, and your opt-out choices depend on the application or service
you use, as is more fully described below.</p>
<p>When we post changes to this privacy statement, we will include the date when the statement
was last updated. If we significantly change this statement, we will notify you about the upcoming change via
our website or using in-app notifications. We encourage you to review this statement periodically.</p>
<h2>User-submitted data</h2>
<p>Certain pieces of information we will only process when you submit it to us.</p>
<p>For example, to create an
<a href="https://auth.opera.com"
target="_blank"
rel="nofollow noopener">Opera account
</a>
we may ask for a preferred username and an email address (to authenticate the request and for password
recovery). Alternatively you can use your Facebook, Google+, Twitter, or VK account to sign in into an Opera
account and access our services with the same profile. In this case we may collect your name and email address
from these social networks. You can delete or modify the submitted data using your
<a href="https://auth.opera.com/account/edit-profile"
target="_blank"
rel="nofollow noopener">profile page
</a>
. We retain any data up to seven days after you’ve discontinued your Opera account in case you change your mind.
</p>
<p>Note also that Opera allows you to sync your browser data, such as Speed Dial entries and
bookmarks, between devices that have another Opera browser installed on them. Profile sync relies on your Opera
account and follows the same privacy approach.</p>
<p>If you decide to participate in a promotional campaign, we may ask for your name, age, or
postal address. If you submit your phone number or email address on a download page, we may send you an
application download link via SMS or email for your convenience. We will use this data only to provide the
services you have requested and will not retain your data any longer than necessary to fulfill that specific
purpose. If you’re not comfortable with us using this data for this limited purpose, then don’t provide it to
us.</p>
<h2>Anonymous usage statistics</h2>
<p>When you install an Opera application, a random installation ID is generated. We may collect
this identifier, as well as your device ID and hardware specification, operating system and environment
configuration, and feature usage data.</p>
<p>We use this information for certain legitimate business purposes, namely:</p>
<ul>
<li>To understand better how people interact with our applications and services;</li>
<li>To enhance, modify, personalize or otherwise improve our applications and services;</li>
<li>To determine the effectiveness of promotional campaigns and advertising;</li>
<li>To detect, debug and fix crashes in our applications and services;</li>
<li>To prevent security breaches and abuse.</li>
</ul>
<p>In short, this information helps us to improve our products and services. We have no
practical way to use this information to identify you personally. We may store this usage data up to three
years. If you would like to learn about your opt-out choices, please refer to our
<a href="https://help.opera.com"
target="_blank">help pages
</a>
.
</p>
<h2>News</h2>
<p>To provide you with more relevant news content in certain countries and languages, we
collect some information about the articles you read in the application’s native news feed, and your general
location. This information is linked to a randomly generated News ID and may be stored on our servers up to
three months.</p>
<h2>Personalized ads</h2>
<p>Based on advertising IDs and your general location, some of our mobile applications may
serve targeted ads. These ads are provided by our monetization partners. You can always adjust your personalized
ad choices in the application’s “Settings” menu or through your operating system’s settings.</p>
<p>We collect this data pursuant to our legitimate business interests. As noted in our
<a href="/eula"
target="_self"
rel="nofollow">End User License Agreements
</a> and
<a href="/terms"
target="_self"
rel="nofollow">Terms of Service
</a>
, our applications are ad-supported. Collecting this information helps us offset the costs of our business and
helps provide a more personalized experience for the user.
</p>
<h2>Crash reports</h2>
<p>If an Opera application crashes, we collect a log that includes some information about your
browser’s version, your operating system, platform and some memory data related to the crash. We collect this
data with the sole purpose of improving our products and services. Crash logs are kept for six months.</p>
<p>If you visit our websites, we may collect your IP address to help diagnose problems with our
servers and to administer our websites. We use IP addresses solely for this purpose and keep website access logs
up to six months.</p>
<h2>Feature-specific data points</h2>
<p><b>Browser VPN.</b> When you use our built-in VPN service, we do not log any
information related to your browsing activity and originating network address.</p>
<p><b>Browser Assistant.</b> Your copy of Opera for computers may include a component that
displays desktop notifications promoting the browser’s features. It checks if any notifications are pending on a
scheduled basis and may anonymously report occurrence of certain system events (namely low battery, low hard
disk space, new Wi-Fi network connected, another browser installed). This information is not collected by us and
no personal information is sent.</p>
<p><b>My Flow.</b> If you use the “My Flow” function in Opera for computers or the Opera
Touch browser, a random ID is generated by the Flow server and assigned to each client device. These IDs are
used solely to enable pairing functionality between desktop and mobile applications and persist only while your
devices are connected to My Flow. Your data is protected with end-to-end encryption and we retain it only as
long as you continue to use the feature. You can disconnect your devices from My Flow, and delete your data
through the application’s
<a href="https://help.opera.com/touch/my-flow/"
target="_blank">Settings
</a> menu.
</p>
<p><b>Data compression.</b> Extreme-savings mode (in Opera Mini) renders web pages on our
servers before sending a compressed version of the content to the application on your device. High-savings mode
(Opera Turbo) does not render content, but our servers look through your requests to see if any elements on the
page can be compressed before sending them to your device. If you use Opera Mini or Turbo data compression
features, we log a randomly generated ID, advertising ID (on mobile devices), your IP address and URLs of your
requests that are sent through our servers, but not the content. We may also log a phone number and IMEI, if
they were provided by your mobile operator. We use this data to debug and improve our services and may store in
our server logs for up to 45 days. Then we anonymize and aggregate this data and may allow our business partners
access to it.</p>
<p><b>Malicious-site check.</b> We use a fraud prevention framework and check the URLs you
visit against lists of known, malicious websites to protect you online. We don’t store or share this data.</p>
<p><b>Default search engines.</b> When visiting some search engine websites, the website
may query if it is set as the default search engine in the application’s settings, and suggest to set itself as
the default search engine.</p>
<p><b>Social login.</b> Some of our applications use Account Kit by Facebook to provide a quick
and simple authentication service. Facebook will send you an email or SMS confirmation code that you can use to
log into the application. If you choose Account Kit to log into an application, then you agree to share your
email, phone number, and information about device you're using with Facebook and Opera. All the information is
needed to provide and improve the service, including personalizing content, tailoring and measuring ads, and
providing a safer experience. You can read more about how Facebook uses this data at their
<a href="https://www.facebook.com/privacy/explanation/"
target="_blank"
rel="nofollow noopener">privacy page
</a> and follow
<a href="https://www.accountkit.com/faq/"
target="_blank"
rel="nofollow noopener">the opt-out instructions
</a> if you want to stop using Account Kit.
</p>
<h2>Cookies</h2>
<p>We use cookies on our websites for session management and retaining your settings or
preferences. We may also use third-party cookies to collect visitor statistics and measure our marketing
campaigns. If you would like to reject third-party cookies, please configure your browser’s settings
accordingly.</p>
<h2>Children’s privacy</h2>
<p>There are no guarantees that children cannot enter our websites or use our applications
without parental consent or notification. Therefore, and as provided in our
<a href="/eula"
target="_self"
rel="nofollow">End User License Agreements
</a>
, we require children to include their parents in the download process, and we encourage parents to read this
privacy statement before allowing their children to use our applications and services.
</p>
<h2>International data transfers</h2>
<p>When we do collect personal data, such personal data may be transferred to partners in
countries outside of the European Economic Area with a lower level of data protection than that provided for
under European law. Whenever we do so, we require that our partners agree to the European Union’s model
contracts for the transfer of personal data to third countries (also known as the “standard contractual
clauses”) to ensure adequate protection of your personal data.</p>
<h2>Third parties</h2>
<p>Our applications and services include third-party technology or code, some of which may use
your data in different ways. When such third-party technologies use previously collected data, they typically
act as data processors for us. When they collect data on their own, they typically act as independent data
controllers. For convenience, we have included links to their privacy policies below. Data controllers are
marked with an asterisk.</p>
<p>Opera for computers and all our mobile applications use:
<a href="https://www.google.com/policies/privacy"
rel="nofollow noopener"
target="_blank">Google Geolocation API
</a>
*.
</p>
<p>Opera for Android:
<a href="https://www.appsflyer.com/privacy-policy/"
rel="nofollow noopener"
target="_blank">AppsFlyer
</a>
,
<a href="http://ad.duapps.com/gdpr/"
rel="nofollow noopener"
target="_blank">DU Ad Platform
</a>
,
<a href="https://www.facebook.com/about/privacy/"
rel="nofollow noopener"
target="_blank">Facebook SDK
</a>
*,
<a href="https://firebase.google.com/terms/"
rel="nofollow noopener"
target="_blank">Firebase Cloud Messaging
</a>
,
<a href="https://policies.google.com/technologies/partner-sites"
rel="nofollow noopener"
target="_blank">Google AdMob
</a>
*,
<a href="https://infura.io/privacy"
rel="nofollow noopener"
target="_blank">Infura
</a>
,
<a href="https://www.leanplum.com/privacy/"
rel="nofollow noopener"
target="_blank">Leanplum
</a>
,
<a href="https://legal.my.com/us/"
rel="nofollow noopener"
target="_blank">MyTarget
</a>
*,
<a href="https://www.outbrain.com/what-is/"
rel="nofollow noopener"
target="_blank">Outbrain
</a>
*.
</p>
<p>Opera Mini for Android:
<a href="https://www.appsflyer.com/privacy-policy/"
rel="nofollow noopener"
target="_blank">AppsFlyer
</a>
,
<a href="https://www.facebook.com/about/privacy/"
rel="nofollow noopener"
target="_blank">Facebook SDK
</a>
*,
<a href="https://firebase.google.com/terms/"
rel="nofollow noopener"
target="_blank">Firebase Cloud Messaging
</a>
,
<a href="https://policies.google.com/technologies/partner-sites"
rel="nofollow noopener"
target="_blank">Google AdMob
</a>
*,
<a href="https://www.leanplum.com/privacy/"
rel="nofollow noopener"
target="_blank">Leanplum
</a>
,
<a href="https://www.outbrain.com/what-is/"
rel="nofollow noopener"
target="_blank">Outbrain
</a>
*,
<a href="https://yandex.com/legal/metrica_api/"
rel="nofollow noopener"
target="_blank">Yandex AppMetrica
</a>
,
<a href="https://yandex.ru/legal/partner/"
rel="nofollow noopener"
target="_blank">Yandex Mobile Ads SDK
</a>
*.
</p>
<p>Opera Mini for iOS:
<a href="https://www.appsflyer.com/privacy-policy/"
rel="nofollow noopener"
target="_blank">AppsFlyer
</a>
,
<a href="https://www.facebook.com/about/privacy/"
rel="nofollow noopener"
target="_blank">Facebook SDK
</a>
*,
<a href="https://policies.google.com/technologies/partner-sites"
rel="nofollow noopener"
target="_blank">Google AdMob
</a>
*.
</p>
<p>Opera Touch:
<a href="https://www.appsflyer.com/privacy-policy/"
rel="nofollow noopener"
target="_blank">AppsFlyer
</a>
,
<a href="https://firebase.google.com/terms/"
rel="nofollow noopener"
target="_blank">Firebase Cloud Messaging
</a>
,
<a href="https://firebase.google.com/terms/"
rel="nofollow noopener"
target="_blank">Firebase Crashlytics
</a>
.
</p>
<p>Opera News:
<a href="https://www.appsflyer.com/privacy-policy/"
rel="nofollow noopener"
target="_blank">AppsFlyer
</a>
,
<a href="https://www.facebook.com/about/privacy/"
rel="nofollow noopener"
target="_blank">Facebook SDK
</a>
*,
<a href="https://firebase.google.com/terms/"
rel="nofollow noopener"
target="_blank">Firebase Cloud Messaging
</a>
,
<a href="https://policies.google.com/technologies/partner-sites"
rel="nofollow noopener"
target="_blank">Google AdMob
</a>
*,
<a href="https://www.outbrain.com/what-is/"
rel="nofollow noopener"
target="_blank">Outbrain
</a>
*.
</p>
<p>Our websites use:
<a href="https://www.cxense.com/about-us/privacy-policy"
rel="nofollow noopener"
target="_blank">Cxense
</a>
,
<a href="https://www.facebook.com/about/privacy/"
rel="nofollow noopener"
target="_blank">Facebook Pixel
</a>
*,
<a href="https://www.google.com/policies/privacy"
rel="nofollow noopener"
target="_blank">Google Analytics
</a>
*,
<a href="https://www.snap.com/en-US/privacy/privacy-policy/"
rel="nofollow noopener"
target="_blank">SnapChat
</a>
,
<a href="https://yandex.com/legal/privacy/"
rel="nofollow noopener"
target="_blank">Yandex Metrica
</a>
.
</p>
<p>Please note that this list of third-party entities applies only to the currently supported
versions of our applications and services.</p>
<h2>Your rights</h2>
<p>You have the right to make a request to access or delete any of your personal data that we
might possess. You can make a request via
<a href="https://security.opera.com/privacy-inquiry"
target="_blank"
rel="nofollow noopener">this online request form
</a> or by contacting our Data Protection Officer at the address below. You may be required to provide
additional information to authenticate your request. You also have the right to lodge a complaint with
Datatilsynet, the Norwegian Data Protection Authority, which can be contacted through
<a href="https://www.datatilsynet.no"
rel="nofollow noopener"
target="_blank">their webpage
</a>
.
</p>
<h2>Contacts</h2>
<p>We are very open about privacy and recognize your trust as a great value. If you have any
questions about this statement or any privacy issues in our applications or services, feel free to contact our
Data Protection Officer via
<a href="https://security.opera.com/privacy-inquiry"
target="_blank"
rel="nofollow noopener">this online request form
</a> or by post:
</p><p>Opera Software AS<br>P.O. Box 4214 Nydalen<br>NO-0401 OSLO<br>Norway</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="/privacy">
Privacy
</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>