@duckduckgo/autoconsent 2.0.0 → 2.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (60) hide show
  1. package/.vscode/.idea/.vscode.iml +9 -0
  2. package/.vscode/.idea/modules.xml +8 -0
  3. package/.vscode/.idea/workspace.xml +28 -0
  4. package/dist/addon-firefox/background.bundle.js +1 -0
  5. package/dist/addon-firefox/content.bundle.js +1 -0
  6. package/dist/addon-firefox/icons/cog.png +0 -0
  7. package/dist/addon-firefox/icons/cookie-idle.png +0 -0
  8. package/dist/addon-firefox/icons/cookie.png +0 -0
  9. package/dist/addon-firefox/icons/party.png +0 -0
  10. package/dist/addon-firefox/icons/tick.png +0 -0
  11. package/dist/addon-firefox/icons/verified.png +0 -0
  12. package/dist/addon-firefox/rules.json +4167 -0
  13. package/dist/addon-mv3/background.bundle.js +1 -0
  14. package/dist/addon-mv3/content.bundle.js +1 -0
  15. package/dist/addon-mv3/icons/cog.png +0 -0
  16. package/dist/addon-mv3/icons/cookie-idle.png +0 -0
  17. package/dist/addon-mv3/icons/cookie.png +0 -0
  18. package/dist/addon-mv3/icons/party.png +0 -0
  19. package/dist/addon-mv3/icons/tick.png +0 -0
  20. package/dist/addon-mv3/icons/verified.png +0 -0
  21. package/dist/addon-mv3/rules.json +4167 -0
  22. package/dist/autoconsent.cjs.js +1 -1
  23. package/dist/autoconsent.esm.js +1 -1
  24. package/dist/autoconsent.playwright.js +1 -1
  25. package/lib/cmps/base.ts +5 -0
  26. package/lib/cmps/onetrust.ts +1 -1
  27. package/lib/cmps/sourcepoint-frame.ts +9 -7
  28. package/lib/cmps/trustarc-top.ts +6 -0
  29. package/lib/web/consentomatic/index.js +188 -0
  30. package/lib/web/consentomatic/tools.js +177 -0
  31. package/lib/web.ts +7 -2
  32. package/package.json +5 -4
  33. package/playwright/content.ts +1 -7
  34. package/playwright/runner.ts +104 -73
  35. package/readme.md +5 -1
  36. package/rollup.config.js +19 -13
  37. package/rules/autoconsent/ausopen.json +2 -1
  38. package/rules/autoconsent/cookie-law-info.json +1 -1
  39. package/rules/autoconsent/cookie-notice.json +1 -1
  40. package/rules/autoconsent/destatis-de.json +2 -1
  41. package/rules/autoconsent/dunelm.json +1 -1
  42. package/rules/autoconsent/etsy.json +1 -1
  43. package/rules/autoconsent/marksandspencer.json +2 -1
  44. package/rules/autoconsent/mediamarkt-de.json +1 -1
  45. package/rules/autoconsent/microsoft.json +1 -1
  46. package/rules/autoconsent/osano.json +4 -1
  47. package/rules/autoconsent/snigel.json +2 -1
  48. package/rules/autoconsent/thefreedictionary.json +1 -1
  49. package/rules/rules.json +35 -8
  50. package/tests/didomi.spec.ts +1 -1
  51. package/tests/evidon.spec.ts +6 -1
  52. package/tests/oil.spec.ts +1 -1
  53. package/tests/onetrust.spec.ts +19 -3
  54. package/tests/quantcast.spec.ts +1 -1
  55. package/tests/springer.spec.ts +1 -1
  56. package/tests/trustarc.spec.ts +1 -0
  57. package/tests/wordpressgdpr.spec.ts +1 -1
  58. package/update_version.js +10 -6
  59. package/dist/autoconsent.standalone.js +0 -1
  60. package/playwright/standalone.ts +0 -36
@@ -0,0 +1,4167 @@
1
+ {
2
+ "autoconsent": [
3
+ {
4
+ "name": "192.com",
5
+ "detectCmp": [
6
+ {
7
+ "exists": ".ont-cookies"
8
+ }
9
+ ],
10
+ "detectPopup": [
11
+ {
12
+ "visible": ".ont-cookies"
13
+ }
14
+ ],
15
+ "optIn": [
16
+ {
17
+ "click": ".ont-btn-main.ont-cookies-btn.js-ont-btn-ok2"
18
+ }
19
+ ],
20
+ "optOut": [
21
+ {
22
+ "click": ".ont-cookes-btn-manage"
23
+ },
24
+ {
25
+ "click": ".ont-btn-main.ont-cookies-btn.js-ont-btn-choose"
26
+ }
27
+ ],
28
+ "test": [
29
+ {
30
+ "eval": "document.cookie.includes('CC_ADVERTISING=NO') && document.cookie.includes('CC_ANALYTICS=NO')"
31
+ }
32
+ ]
33
+ },
34
+ {
35
+ "name": "arzt-auskunft.de",
36
+ "prehideSelectors": [
37
+ "#cookiescript_injected"
38
+ ],
39
+ "detectCmp": [
40
+ {
41
+ "exists": "#cookiescript_injected"
42
+ }
43
+ ],
44
+ "detectPopup": [
45
+ {
46
+ "visible": "#cookiescript_injected"
47
+ }
48
+ ],
49
+ "optOut": [
50
+ {
51
+ "click": "#cookiescript_reject"
52
+ }
53
+ ],
54
+ "optIn": [
55
+ {
56
+ "click": "#cookiescript_accept"
57
+ }
58
+ ]
59
+ },
60
+ {
61
+ "name": "asus",
62
+ "detectCmp": [
63
+ {
64
+ "exists": "#cookie-policy-info"
65
+ }
66
+ ],
67
+ "detectPopup": [
68
+ {
69
+ "visible": "#cookie-policy-info"
70
+ }
71
+ ],
72
+ "optIn": [
73
+ {
74
+ "click": ".btn-read-ck"
75
+ }
76
+ ],
77
+ "optOut": [
78
+ {
79
+ "click": ".btn-setting"
80
+ },
81
+ {
82
+ "click": ".btn-save"
83
+ }
84
+ ]
85
+ },
86
+ {
87
+ "name": "ausopen.com",
88
+ "isHidingRule": true,
89
+ "detectCmp": [
90
+ {
91
+ "exists": ".gdpr-popup__message"
92
+ }
93
+ ],
94
+ "detectPopup": [
95
+ {
96
+ "visible": ".gdpr-popup__message"
97
+ }
98
+ ],
99
+ "optOut": [
100
+ {
101
+ "hide": [
102
+ ".gdpr-popup__message"
103
+ ]
104
+ }
105
+ ],
106
+ "optIn": [
107
+ {
108
+ "click": [
109
+ ".gdpr-popup__message button"
110
+ ]
111
+ }
112
+ ]
113
+ },
114
+ {
115
+ "name": "aws.amazon.com",
116
+ "prehideSelectors": [
117
+ "#awsccc-cb-content",
118
+ "#awsccc-cs-container",
119
+ "#awsccc-cs-modalOverlay",
120
+ "#awsccc-cs-container-inner"
121
+ ],
122
+ "detectCmp": [
123
+ {
124
+ "exists": "#awsccc-cb-content"
125
+ }
126
+ ],
127
+ "detectPopup": [
128
+ {
129
+ "visible": "#awsccc-cb-content"
130
+ }
131
+ ],
132
+ "optIn": [
133
+ {
134
+ "click": "button[data-id=awsccc-cb-btn-accept"
135
+ }
136
+ ],
137
+ "optOut": [
138
+ {
139
+ "click": "button[data-id=awsccc-cb-btn-customize]"
140
+ },
141
+ {
142
+ "eval": "Array.from(document.querySelectorAll('input[aria-checked=true')).forEach(e => e.click()) || true"
143
+ },
144
+ {
145
+ "click": "button[data-id=awsccc-cs-btn-save]"
146
+ }
147
+ ]
148
+ },
149
+ {
150
+ "name": "baden-wuerttemberg.de",
151
+ "prehideSelectors": [
152
+ ".cookie-alert.t-dark"
153
+ ],
154
+ "detectCmp": [
155
+ {
156
+ "exists": ".cookie-alert.t-dark"
157
+ }
158
+ ],
159
+ "detectPopup": [
160
+ {
161
+ "visible": ".cookie-alert.t-dark"
162
+ }
163
+ ],
164
+ "optIn": [
165
+ {
166
+ "click": ".cookie-alert__form input:not([disabled]):not([checked])"
167
+ },
168
+ {
169
+ "click": ".cookie-alert__button button"
170
+ }
171
+ ],
172
+ "optOut": [
173
+ {
174
+ "hide": [
175
+ ".cookie-alert.t-dark"
176
+ ]
177
+ }
178
+ ]
179
+ },
180
+ {
181
+ "name": "bing.com",
182
+ "prehideSelectors": [
183
+ "#bnp_container"
184
+ ],
185
+ "detectCmp": [
186
+ {
187
+ "exists": "#bnp_cookie_banner"
188
+ }
189
+ ],
190
+ "detectPopup": [
191
+ {
192
+ "visible": "#bnp_cookie_banner"
193
+ }
194
+ ],
195
+ "optIn": [
196
+ {
197
+ "click": "#bnp_btn_accept"
198
+ }
199
+ ],
200
+ "optOut": [
201
+ {
202
+ "click": "#bnp_btn_preference"
203
+ },
204
+ {
205
+ "click": "#mcp_savesettings"
206
+ }
207
+ ],
208
+ "test": [
209
+ {
210
+ "eval": "document.cookie.includes('AL=0') && document.cookie.includes('AD=0') && document.cookie.includes('SM=0')"
211
+ }
212
+ ]
213
+ },
214
+ {
215
+ "name": "borlabs",
216
+ "prehideSelectors": [
217
+ "#BorlabsCookieBox"
218
+ ],
219
+ "detectCmp": [
220
+ {
221
+ "exists": "._brlbs-block-content"
222
+ }
223
+ ],
224
+ "detectPopup": [
225
+ {
226
+ "visible": "._brlbs-bar-wrap,._brlbs-box-wrap"
227
+ }
228
+ ],
229
+ "optIn": [
230
+ {
231
+ "click": "a[data-cookie-accept-all]"
232
+ }
233
+ ],
234
+ "optOut": [
235
+ {
236
+ "click": "a[data-cookie-refuse]"
237
+ }
238
+ ]
239
+ },
240
+ {
241
+ "name": "bundesregierung.de",
242
+ "prehideSelectors": [
243
+ ".bpa-cookie-banner"
244
+ ],
245
+ "detectCmp": [
246
+ {
247
+ "exists": ".bpa-cookie-banner"
248
+ }
249
+ ],
250
+ "detectPopup": [
251
+ {
252
+ "visible": ".bpa-cookie-banner .bpa-module-full-hero"
253
+ }
254
+ ],
255
+ "optIn": [
256
+ {
257
+ "click": ".bpa-accept-all-button"
258
+ }
259
+ ],
260
+ "optOut": [
261
+ {
262
+ "wait": 500,
263
+ "comment": "click is not immediately recognized"
264
+ },
265
+ {
266
+ "waitForThenClick": ".bpa-close-button"
267
+ }
268
+ ],
269
+ "test": [
270
+ {
271
+ "eval": "document.cookie.match('cookie-allow-tracking=0')"
272
+ }
273
+ ]
274
+ },
275
+ {
276
+ "name": "cc_banner",
277
+ "prehideSelectors": [
278
+ ".cc_banner-wrapper"
279
+ ],
280
+ "detectCmp": [
281
+ {
282
+ "exists": ".cc_banner-wrapper"
283
+ }
284
+ ],
285
+ "detectPopup": [
286
+ {
287
+ "visible": ".cc_banner"
288
+ }
289
+ ],
290
+ "optIn": [
291
+ {
292
+ "click": ".cc_btn_accept_all"
293
+ }
294
+ ],
295
+ "optOut": [
296
+ {
297
+ "hide": [
298
+ ".cc_banner-wrapper"
299
+ ]
300
+ }
301
+ ]
302
+ },
303
+ {
304
+ "name": "cookie-law-info",
305
+ "prehideSelectors": [
306
+ "#cookie-law-info-bar"
307
+ ],
308
+ "detectCmp": [
309
+ {
310
+ "exists": "#cookie-law-info-bar"
311
+ }
312
+ ],
313
+ "detectPopup": [
314
+ {
315
+ "visible": "#cookie-law-info-bar"
316
+ }
317
+ ],
318
+ "optIn": [
319
+ {
320
+ "click": "[data-cli_action=\"accept_all\"]"
321
+ }
322
+ ],
323
+ "optOut": [
324
+ {
325
+ "hide": [
326
+ "#cookie-law-info-bar"
327
+ ]
328
+ },
329
+ {
330
+ "eval": "CLI.disableAllCookies() || CLI.reject_close() || true"
331
+ }
332
+ ],
333
+ "test": [
334
+ {
335
+ "eval": "document.cookie.indexOf('cookielawinfo-checkbox-non-necessary=yes') === -1"
336
+ }
337
+ ]
338
+ },
339
+ {
340
+ "name": "cookie-notice",
341
+ "prehideSelectors": [
342
+ "#cookie-notice"
343
+ ],
344
+ "detectCmp": [
345
+ {
346
+ "exists": "#cookie-notice"
347
+ }
348
+ ],
349
+ "detectPopup": [
350
+ {
351
+ "visible": "#cookie-notice"
352
+ }
353
+ ],
354
+ "optIn": [
355
+ {
356
+ "click": [
357
+ "#cn-accept-cookie"
358
+ ]
359
+ }
360
+ ],
361
+ "optOut": [
362
+ {
363
+ "hide": [
364
+ "#cookie-notice"
365
+ ]
366
+ }
367
+ ]
368
+ },
369
+ {
370
+ "name": "cookieconsent",
371
+ "prehideSelectors": [
372
+ "[aria-label=\"cookieconsent\"][aria-describedby=\"cookieconsent:desc\"]"
373
+ ],
374
+ "detectCmp": [
375
+ {
376
+ "exists": "[aria-label=\"cookieconsent\"][aria-describedby=\"cookieconsent:desc\"]"
377
+ }
378
+ ],
379
+ "detectPopup": [
380
+ {
381
+ "visible": "[aria-label=\"cookieconsent\"][aria-describedby=\"cookieconsent:desc\"]"
382
+ }
383
+ ],
384
+ "optIn": [
385
+ {
386
+ "click": ".cc-dismiss"
387
+ }
388
+ ],
389
+ "optOut": [
390
+ {
391
+ "hide": [
392
+ "[aria-label=\"cookieconsent\"][aria-describedby=\"cookieconsent:desc\"]"
393
+ ]
394
+ }
395
+ ]
396
+ },
397
+ {
398
+ "name": "corona-in-zahlen.de",
399
+ "prehideSelectors": [
400
+ ".cookiealert"
401
+ ],
402
+ "detectCmp": [
403
+ {
404
+ "exists": ".cookiealert"
405
+ }
406
+ ],
407
+ "detectPopup": [
408
+ {
409
+ "visible": ".cookiealert"
410
+ }
411
+ ],
412
+ "optOut": [
413
+ {
414
+ "click": ".configurecookies"
415
+ },
416
+ {
417
+ "click": ".confirmcookies"
418
+ }
419
+ ],
420
+ "optIn": [
421
+ {
422
+ "click": ".acceptcookies"
423
+ }
424
+ ]
425
+ },
426
+ {
427
+ "name": "deepl.com",
428
+ "prehideSelectors": [
429
+ ".dl_cookieBanner_container"
430
+ ],
431
+ "detectCmp": [
432
+ {
433
+ "exists": ".dl_cookieBanner_container"
434
+ }
435
+ ],
436
+ "detectPopup": [
437
+ {
438
+ "visible": ".dl_cookieBanner_container"
439
+ }
440
+ ],
441
+ "optOut": [
442
+ {
443
+ "click": ".dl_cookieBanner--buttonSelected"
444
+ }
445
+ ],
446
+ "optIn": [
447
+ {
448
+ "click": ".dl_cookieBanner--buttonAll"
449
+ }
450
+ ]
451
+ },
452
+ {
453
+ "name": "destatis.de",
454
+ "prehideSelectors": [
455
+ "div[aria-labelledby=cookiebannerhead]"
456
+ ],
457
+ "detectCmp": [
458
+ {
459
+ "exists": ".cookiebannerbox"
460
+ }
461
+ ],
462
+ "detectPopup": [
463
+ {
464
+ "visible": ".cookiebannerbox"
465
+ }
466
+ ],
467
+ "optOut": [
468
+ {
469
+ "hide": [
470
+ ".cookiebannerbox"
471
+ ]
472
+ }
473
+ ],
474
+ "optIn": [
475
+ {
476
+ "click": [
477
+ ".cookiebannerbox .close"
478
+ ]
479
+ }
480
+ ]
481
+ },
482
+ {
483
+ "name": "Drupal",
484
+ "detectCmp": [
485
+ {
486
+ "exists": "#drupalorg-crosssite-gdpr"
487
+ }
488
+ ],
489
+ "detectPopup": [
490
+ {
491
+ "visible": "#drupalorg-crosssite-gdpr"
492
+ }
493
+ ],
494
+ "optOut": [
495
+ {
496
+ "click": ".no"
497
+ }
498
+ ],
499
+ "optIn": [
500
+ {
501
+ "click": ".yes"
502
+ }
503
+ ]
504
+ },
505
+ {
506
+ "name": "dunelm.com",
507
+ "prehideSelectors": [
508
+ "div[data-testid=cookie-consent-modal-backdrop]"
509
+ ],
510
+ "detectCmp": [
511
+ {
512
+ "exists": "div[data-testid=cookie-consent-message-contents]"
513
+ }
514
+ ],
515
+ "detectPopup": [
516
+ {
517
+ "visible": "div[data-testid=cookie-consent-message-contents]"
518
+ }
519
+ ],
520
+ "optIn": [
521
+ {
522
+ "click": "[data-testid=\"cookie-consent-allow-all\"]"
523
+ }
524
+ ],
525
+ "optOut": [
526
+ {
527
+ "click": "button[data-testid=cookie-consent-adjust-settings]"
528
+ },
529
+ {
530
+ "click": "button[data-testid=cookie-consent-preferences-save]"
531
+ }
532
+ ],
533
+ "test": [
534
+ {
535
+ "eval": "document.cookie.includes('cc_functional=0') && document.cookie.includes('cc_targeting=0')"
536
+ }
537
+ ]
538
+ },
539
+ {
540
+ "name": "etsy",
541
+ "prehideSelectors": [
542
+ "#gdpr-single-choice-overlay",
543
+ "#gdpr-privacy-settings"
544
+ ],
545
+ "detectCmp": [
546
+ {
547
+ "exists": "#gdpr-single-choice-overlay"
548
+ }
549
+ ],
550
+ "detectPopup": [
551
+ {
552
+ "visible": "#gdpr-single-choice-overlay"
553
+ }
554
+ ],
555
+ "optOut": [
556
+ {
557
+ "click": "button[data-gdpr-open-full-settings]"
558
+ },
559
+ {
560
+ "waitForVisible": ".gdpr-overlay-body input",
561
+ "timeout": 3000
562
+ },
563
+ {
564
+ "wait": 1000
565
+ },
566
+ {
567
+ "eval": "document.querySelectorAll(\".gdpr-overlay-body input\").forEach(toggle => { toggle.checked = false; }) || true"
568
+ },
569
+ {
570
+ "eval": "document.querySelector('.gdpr-overlay-view button[data-wt-overlay-close]').click() || true"
571
+ }
572
+ ],
573
+ "optIn": [
574
+ {
575
+ "click": "button[data-gdpr-single-choice-accept]"
576
+ }
577
+ ]
578
+ },
579
+ {
580
+ "name": "eu-cookie-compliance-banner",
581
+ "detectCmp": [
582
+ {
583
+ "exists": ".eu-cookie-compliance-banner-info"
584
+ }
585
+ ],
586
+ "detectPopup": [
587
+ {
588
+ "visible": ".eu-cookie-compliance-banner-info"
589
+ }
590
+ ],
591
+ "optIn": [
592
+ {
593
+ "click": ".agree-button"
594
+ }
595
+ ],
596
+ "optOut": [
597
+ {
598
+ "click": ".decline-button,.eu-cookie-compliance-save-preferences-button",
599
+ "optional": true
600
+ },
601
+ {
602
+ "hide": [
603
+ ".eu-cookie-compliance-banner-info",
604
+ "#sliding-popup"
605
+ ]
606
+ }
607
+ ],
608
+ "test": [
609
+ {
610
+ "eval": "document.cookie.indexOf('cookie-agreed=2') === -1"
611
+ }
612
+ ]
613
+ },
614
+ {
615
+ "name": "funding-choices",
616
+ "prehideSelectors": [
617
+ ".fc-consent-root,.fc-dialog-container,.fc-dialog-overlay,.fc-dialog-content"
618
+ ],
619
+ "detectCmp": [
620
+ {
621
+ "exists": ".fc-consent-root"
622
+ }
623
+ ],
624
+ "detectPopup": [
625
+ {
626
+ "exists": ".fc-dialog-container"
627
+ }
628
+ ],
629
+ "optOut": [
630
+ {
631
+ "click": ".fc-cta-do-not-consent,.fc-cta-manage-options"
632
+ },
633
+ {
634
+ "click": ".fc-preference-consent:checked,.fc-preference-legitimate-interest:checked",
635
+ "all": true,
636
+ "optional": true
637
+ },
638
+ {
639
+ "click": ".fc-confirm-choices",
640
+ "optional": true
641
+ }
642
+ ],
643
+ "optIn": [
644
+ {
645
+ "click": ".fc-cta-consent"
646
+ }
647
+ ]
648
+ },
649
+ {
650
+ "name": "gov.uk",
651
+ "detectCmp": [
652
+ {
653
+ "exists": "#global-cookie-message"
654
+ }
655
+ ],
656
+ "detectPopup": [
657
+ {
658
+ "exists": "#global-cookie-message"
659
+ }
660
+ ],
661
+ "optIn": [
662
+ {
663
+ "click": "button[data-accept-cookies=true]"
664
+ }
665
+ ],
666
+ "optOut": [
667
+ {
668
+ "click": "button[data-reject-cookies=true],#reject-cookies"
669
+ },
670
+ {
671
+ "click": "button[data-hide-cookie-banner=true],#hide-cookie-decision"
672
+ }
673
+ ]
674
+ },
675
+ {
676
+ "name": "hl.co.uk",
677
+ "prehideSelectors": [
678
+ ".cookieModalContent",
679
+ "#cookie-banner-overlay"
680
+ ],
681
+ "detectCmp": [
682
+ {
683
+ "exists": "#cookie-banner-overlay"
684
+ }
685
+ ],
686
+ "detectPopup": [
687
+ {
688
+ "exists": "#cookie-banner-overlay"
689
+ }
690
+ ],
691
+ "optIn": [
692
+ {
693
+ "click": "#acceptCookieButton"
694
+ }
695
+ ],
696
+ "optOut": [
697
+ {
698
+ "click": "#manageCookie"
699
+ },
700
+ {
701
+ "hide": [
702
+ ".cookieSettingsModal"
703
+ ]
704
+ },
705
+ {
706
+ "waitFor": "#AOCookieToggle"
707
+ },
708
+ {
709
+ "click": "#AOCookieToggle[aria-pressed=true]",
710
+ "optional": true
711
+ },
712
+ {
713
+ "waitFor": "#TPCookieToggle"
714
+ },
715
+ {
716
+ "click": "#TPCookieToggle[aria-pressed=true]",
717
+ "optional": true
718
+ },
719
+ {
720
+ "click": "#updateCookieButton"
721
+ }
722
+ ]
723
+ },
724
+ {
725
+ "name": "hubspot",
726
+ "detectCmp": [
727
+ {
728
+ "exists": "#hs-eu-cookie-confirmation"
729
+ }
730
+ ],
731
+ "detectPopup": [
732
+ {
733
+ "visible": "#hs-eu-cookie-confirmation"
734
+ }
735
+ ],
736
+ "optIn": [
737
+ {
738
+ "click": "#hs-eu-confirmation-button"
739
+ }
740
+ ],
741
+ "optOut": [
742
+ {
743
+ "click": "#hs-eu-decline-button"
744
+ }
745
+ ]
746
+ },
747
+ {
748
+ "name": "ionos.de",
749
+ "prehideSelectors": [
750
+ ".privacy-consent--backdrop",
751
+ ".privacy-consent--modal"
752
+ ],
753
+ "detectCmp": [
754
+ {
755
+ "exists": ".privacy-consent--modal"
756
+ }
757
+ ],
758
+ "detectPopup": [
759
+ {
760
+ "visible": ".privacy-consent--modal"
761
+ }
762
+ ],
763
+ "optIn": [
764
+ {
765
+ "click": "#selectAll"
766
+ }
767
+ ],
768
+ "optOut": [
769
+ {
770
+ "click": ".footer-config-link"
771
+ },
772
+ {
773
+ "click": "#confirmSelection"
774
+ }
775
+ ]
776
+ },
777
+ {
778
+ "name": "johnlewis.com",
779
+ "prehideSelectors": [
780
+ "div[class^=pecr-cookie-banner-]"
781
+ ],
782
+ "detectCmp": [
783
+ {
784
+ "exists": "div[class^=pecr-cookie-banner-]"
785
+ }
786
+ ],
787
+ "detectPopup": [
788
+ {
789
+ "exists": "div[class^=pecr-cookie-banner-]"
790
+ }
791
+ ],
792
+ "optOut": [
793
+ {
794
+ "click": "button[data-test^=manage-cookies]"
795
+ },
796
+ {
797
+ "wait": "500"
798
+ },
799
+ {
800
+ "click": "label[data-test^=toggle][class*=checked]:not([class*=disabled])",
801
+ "all": true,
802
+ "optional": true
803
+ },
804
+ {
805
+ "click": "button[data-test=save-preferences]"
806
+ }
807
+ ],
808
+ "optIn": [
809
+ {
810
+ "click": "button[data-test=allow-all]"
811
+ }
812
+ ]
813
+ },
814
+ {
815
+ "name": "klaro",
816
+ "detectCmp": [
817
+ {
818
+ "exists": ".klaro > .cookie-notice"
819
+ }
820
+ ],
821
+ "detectPopup": [
822
+ {
823
+ "visible": ".klaro > .cookie-notice"
824
+ }
825
+ ],
826
+ "optIn": [
827
+ {
828
+ "click": ".cm-btn-success"
829
+ }
830
+ ],
831
+ "optOut": [
832
+ {
833
+ "click": ".cn-decline"
834
+ }
835
+ ],
836
+ "test": [
837
+ {
838
+ "eval": "Object.values(klaro.getManager().consents).every(c => !c)"
839
+ }
840
+ ]
841
+ },
842
+ {
843
+ "name": "marksandspencer.com",
844
+ "isHidingRule": true,
845
+ "detectCmp": [
846
+ {
847
+ "exists": ".navigation-cookiebbanner"
848
+ }
849
+ ],
850
+ "detectPopup": [
851
+ {
852
+ "visible": ".navigation-cookiebbanner"
853
+ }
854
+ ],
855
+ "optOut": [
856
+ {
857
+ "hide": [
858
+ ".navigation-cookiebbanner"
859
+ ]
860
+ }
861
+ ],
862
+ "optIn": [
863
+ {
864
+ "click": [
865
+ ".navigation-cookiebbanner__submit"
866
+ ]
867
+ }
868
+ ]
869
+ },
870
+ {
871
+ "name": "mediamarkt.de",
872
+ "prehideSelectors": [
873
+ "div[aria-labelledby=pwa-consent-layer-title]",
874
+ "div[class^=StyledConsentLayerWrapper-]"
875
+ ],
876
+ "detectCmp": [
877
+ {
878
+ "exists": "div[aria-labelledby^=pwa-consent-layer-title]"
879
+ }
880
+ ],
881
+ "detectPopup": [
882
+ {
883
+ "exists": "div[aria-labelledby^=pwa-consent-layer-title]"
884
+ }
885
+ ],
886
+ "optOut": [
887
+ {
888
+ "click": "button[data-test^=pwa-consent-layer-deny-all]"
889
+ }
890
+ ],
891
+ "optIn": [
892
+ {
893
+ "click": "button[data-test^=pwa-consent-layer-accept-all"
894
+ }
895
+ ]
896
+ },
897
+ {
898
+ "name": "metoffice.gov.uk",
899
+ "prehideSelectors": [
900
+ "#ccc-module"
901
+ ],
902
+ "detectCmp": [
903
+ {
904
+ "exists": "#ccc-module"
905
+ }
906
+ ],
907
+ "detectPopup": [
908
+ {
909
+ "exists": "#ccc-module"
910
+ }
911
+ ],
912
+ "optOut": [
913
+ {
914
+ "click": "#ccc-reject-settings"
915
+ }
916
+ ],
917
+ "optIn": [
918
+ {
919
+ "click": "#ccc-recommended-settings"
920
+ }
921
+ ]
922
+ },
923
+ {
924
+ "name": "microsoft.com",
925
+ "prehideSelectors": [
926
+ "#wcpConsentBannerCtrl"
927
+ ],
928
+ "detectCmp": [
929
+ {
930
+ "exists": "#wcpConsentBannerCtrl"
931
+ }
932
+ ],
933
+ "detectPopup": [
934
+ {
935
+ "exists": "#wcpConsentBannerCtrl"
936
+ }
937
+ ],
938
+ "optOut": [
939
+ {
940
+ "eval": "Array.from(document.querySelectorAll('div > button')).filter(el => el.innerText.match('Reject|Ablehnen'))[0].click() || true"
941
+ }
942
+ ],
943
+ "optIn": [
944
+ {
945
+ "eval": "Array.from(document.querySelectorAll('div > button')).filter(el => el.innerText.match('Accept|Annehmen'))[0].click() || true"
946
+ }
947
+ ],
948
+ "test": [
949
+ {
950
+ "eval": "!!document.cookie.match('MSCC')"
951
+ }
952
+ ]
953
+ },
954
+ {
955
+ "name": "moneysavingexpert.com",
956
+ "detectCmp": [
957
+ {
958
+ "exists": "dialog[data-testid=accept-our-cookies-dialog]"
959
+ }
960
+ ],
961
+ "detectPopup": [
962
+ {
963
+ "visible": "dialog[data-testid=accept-our-cookies-dialog]"
964
+ }
965
+ ],
966
+ "optIn": [
967
+ {
968
+ "click": "#banner-accept"
969
+ }
970
+ ],
971
+ "optOut": [
972
+ {
973
+ "click": "#banner-manage"
974
+ },
975
+ {
976
+ "click": "#pc-confirm"
977
+ }
978
+ ]
979
+ },
980
+ {
981
+ "name": "motor-talk.de",
982
+ "prehideSelectors": [
983
+ ".mt-cc-bnnr__wrapper"
984
+ ],
985
+ "detectCmp": [
986
+ {
987
+ "exists": ".mt-cc-bnnr"
988
+ }
989
+ ],
990
+ "detectPopup": [
991
+ {
992
+ "visible": ".mt-cc-bnnr__wrapper"
993
+ }
994
+ ],
995
+ "optIn": [
996
+ {
997
+ "click": ".mt-cc-bnnr__button-main"
998
+ }
999
+ ],
1000
+ "optOut": [
1001
+ {
1002
+ "click": ".mt-cc-bnnr__decline-link"
1003
+ }
1004
+ ]
1005
+ },
1006
+ {
1007
+ "name": "national-lottery.co.uk",
1008
+ "detectCmp": [
1009
+ {
1010
+ "exists": ".cuk_cookie_consent"
1011
+ }
1012
+ ],
1013
+ "detectPopup": [
1014
+ {
1015
+ "visible": ".cuk_cookie_consent",
1016
+ "check": "any"
1017
+ }
1018
+ ],
1019
+ "optOut": [
1020
+ {
1021
+ "click": ".cuk_cookie_consent_manage_pref"
1022
+ },
1023
+ {
1024
+ "click": ".cuk_cookie_consent_save_pref"
1025
+ },
1026
+ {
1027
+ "click": ".cuk_cookie_consent_close"
1028
+ }
1029
+ ],
1030
+ "optIn": [
1031
+ {
1032
+ "click": ".cuk_cookie_consent_accept_all"
1033
+ }
1034
+ ]
1035
+ },
1036
+ {
1037
+ "name": "netflix.de",
1038
+ "detectCmp": [
1039
+ {
1040
+ "exists": "#cookie-disclosure"
1041
+ }
1042
+ ],
1043
+ "detectPopup": [
1044
+ {
1045
+ "visible": ".cookie-disclosure-message",
1046
+ "check": "any"
1047
+ }
1048
+ ],
1049
+ "optIn": [
1050
+ {
1051
+ "click": ".btn-accept"
1052
+ }
1053
+ ],
1054
+ "optOut": [
1055
+ {
1056
+ "hide": [
1057
+ "#cookie-disclosure"
1058
+ ]
1059
+ },
1060
+ {
1061
+ "click": ".btn-reject"
1062
+ }
1063
+ ]
1064
+ },
1065
+ {
1066
+ "name": "nhs.uk",
1067
+ "prehideSelectors": [
1068
+ "#nhsuk-cookie-banner"
1069
+ ],
1070
+ "detectCmp": [
1071
+ {
1072
+ "exists": "#nhsuk-cookie-banner"
1073
+ }
1074
+ ],
1075
+ "detectPopup": [
1076
+ {
1077
+ "exists": "#nhsuk-cookie-banner"
1078
+ }
1079
+ ],
1080
+ "optOut": [
1081
+ {
1082
+ "click": "#nhsuk-cookie-banner__link_accept"
1083
+ }
1084
+ ],
1085
+ "optIn": [
1086
+ {
1087
+ "click": "#nhsuk-cookie-banner__link_accept_analytics"
1088
+ }
1089
+ ]
1090
+ },
1091
+ {
1092
+ "name": "notice-cookie",
1093
+ "prehideSelectors": [
1094
+ ".button--notice"
1095
+ ],
1096
+ "detectCmp": [
1097
+ {
1098
+ "exists": ".notice--cookie"
1099
+ }
1100
+ ],
1101
+ "detectPopup": [
1102
+ {
1103
+ "visible": ".notice--cookie"
1104
+ }
1105
+ ],
1106
+ "optIn": [
1107
+ {
1108
+ "click": ".button--notice"
1109
+ }
1110
+ ],
1111
+ "optOut": [
1112
+ {
1113
+ "hide": [
1114
+ ".notice--cookie"
1115
+ ]
1116
+ }
1117
+ ]
1118
+ },
1119
+ {
1120
+ "name": "obi.de",
1121
+ "prehideSelectors": [
1122
+ ".disc-cp--active"
1123
+ ],
1124
+ "detectCmp": [
1125
+ {
1126
+ "exists": ".disc-cp-modal__modal"
1127
+ }
1128
+ ],
1129
+ "detectPopup": [
1130
+ {
1131
+ "visible": ".disc-cp-modal__modal"
1132
+ }
1133
+ ],
1134
+ "optIn": [
1135
+ {
1136
+ "click": ".js-disc-cp-accept-all"
1137
+ }
1138
+ ],
1139
+ "optOut": [
1140
+ {
1141
+ "click": ".js-disc-cp-deny-all"
1142
+ }
1143
+ ]
1144
+ },
1145
+ {
1146
+ "name": "osano",
1147
+ "prehideSelectors": [
1148
+ ".osano-cm-window"
1149
+ ],
1150
+ "detectCmp": [
1151
+ {
1152
+ "exists": ".osano-cm-window"
1153
+ }
1154
+ ],
1155
+ "detectPopup": [
1156
+ {
1157
+ "visible": ".osano-cm-dialog"
1158
+ }
1159
+ ],
1160
+ "optIn": [
1161
+ {
1162
+ "click": ".osano-cm-accept-all",
1163
+ "optional": true
1164
+ }
1165
+ ],
1166
+ "optOut": [
1167
+ {
1168
+ "hide": [
1169
+ ".osano-cm-window"
1170
+ ]
1171
+ }
1172
+ ]
1173
+ },
1174
+ {
1175
+ "name": "otto.de",
1176
+ "prehideSelectors": [
1177
+ ".cookieBanner--visibility"
1178
+ ],
1179
+ "detectCmp": [
1180
+ {
1181
+ "exists": ".cookieBanner--visibility"
1182
+ }
1183
+ ],
1184
+ "detectPopup": [
1185
+ {
1186
+ "visible": ".cookieBanner__wrapper"
1187
+ }
1188
+ ],
1189
+ "optIn": [
1190
+ {
1191
+ "click": ".js_cookieBannerPermissionButton"
1192
+ }
1193
+ ],
1194
+ "optOut": [
1195
+ {
1196
+ "click": ".js_cookieBannerProhibitionButton"
1197
+ }
1198
+ ]
1199
+ },
1200
+ {
1201
+ "name": "paypal.com",
1202
+ "prehideSelectors": [
1203
+ "#gdprCookieBanner"
1204
+ ],
1205
+ "detectCmp": [
1206
+ {
1207
+ "exists": "#gdprCookieBanner"
1208
+ }
1209
+ ],
1210
+ "detectPopup": [
1211
+ {
1212
+ "visible": "#gdprCookieContent_wrapper"
1213
+ }
1214
+ ],
1215
+ "optIn": [
1216
+ {
1217
+ "click": "#acceptAllButton"
1218
+ }
1219
+ ],
1220
+ "optOut": [
1221
+ {
1222
+ "wait": 200
1223
+ },
1224
+ {
1225
+ "click": ".gdprCookieBanner_decline-button"
1226
+ }
1227
+ ],
1228
+ "test": [
1229
+ {
1230
+ "eval": "document.cookie.includes('cookie_prefs') === true"
1231
+ }
1232
+ ]
1233
+ },
1234
+ {
1235
+ "name": "quantcast",
1236
+ "prehideSelectors": [
1237
+ "#qc-cmp2-main,#qc-cmp2-container"
1238
+ ],
1239
+ "detectCmp": [
1240
+ {
1241
+ "exists": "#qc-cmp2-container"
1242
+ }
1243
+ ],
1244
+ "detectPopup": [
1245
+ {
1246
+ "visible": "#qc-cmp2-ui"
1247
+ }
1248
+ ],
1249
+ "optOut": [
1250
+ {
1251
+ "click": ".qc-cmp2-summary-buttons > button[mode=\"secondary\"]"
1252
+ },
1253
+ {
1254
+ "waitFor": "#qc-cmp2-ui"
1255
+ },
1256
+ {
1257
+ "click": ".qc-cmp2-toggle-switch > button[aria-checked=\"true\"]",
1258
+ "all": true,
1259
+ "optional": true
1260
+ },
1261
+ {
1262
+ "click": ".qc-cmp2-main button[aria-label=\"REJECT ALL\"]",
1263
+ "optional": true
1264
+ },
1265
+ {
1266
+ "waitForThenClick": ".qc-cmp2-main button[aria-label=\"SAVE & EXIT\"],.qc-cmp2-buttons-desktop > button[mode=\"primary\"]",
1267
+ "timeout": 5000
1268
+ }
1269
+ ],
1270
+ "optIn": [
1271
+ {
1272
+ "click": ".qc-cmp2-summary-buttons > button[mode=\"primary\"]"
1273
+ }
1274
+ ]
1275
+ },
1276
+ {
1277
+ "name": "snigel",
1278
+ "detectCmp": [
1279
+ {
1280
+ "exists": ".snigel-cmp-framework"
1281
+ }
1282
+ ],
1283
+ "detectPopup": [
1284
+ {
1285
+ "visible": ".snigel-cmp-framework"
1286
+ }
1287
+ ],
1288
+ "optOut": [
1289
+ {
1290
+ "click": "#sn-b-custom"
1291
+ },
1292
+ {
1293
+ "click": "#sn-b-save"
1294
+ }
1295
+ ],
1296
+ "test": [
1297
+ {
1298
+ "eval": "!!document.cookie.match('snconsent')"
1299
+ }
1300
+ ],
1301
+ "optIn": [
1302
+ {
1303
+ "click": ".snigel-cmp-framework #accept-choices"
1304
+ }
1305
+ ]
1306
+ },
1307
+ {
1308
+ "name": "steampowered.com",
1309
+ "detectCmp": [
1310
+ {
1311
+ "exists": ".cookiepreferences_popup"
1312
+ },
1313
+ {
1314
+ "visible": ".cookiepreferences_popup"
1315
+ }
1316
+ ],
1317
+ "detectPopup": [
1318
+ {
1319
+ "visible": ".cookiepreferences_popup"
1320
+ }
1321
+ ],
1322
+ "optOut": [
1323
+ {
1324
+ "click": "#rejectAllButton"
1325
+ }
1326
+ ],
1327
+ "optIn": [
1328
+ {
1329
+ "click": "#acceptAllButton"
1330
+ }
1331
+ ],
1332
+ "test": [
1333
+ {
1334
+ "wait": 1000
1335
+ },
1336
+ {
1337
+ "eval": "JSON.parse(decodeURIComponent(document.cookie.split(';').find(s => s.trim().startsWith('cookieSettings')).split('=')[1])).preference_state === 2"
1338
+ }
1339
+ ]
1340
+ },
1341
+ {
1342
+ "name": "Tealium",
1343
+ "prehideSelectors": [
1344
+ "#__tealiumGDPRecModal,#__tealiumGDPRcpPrefs,#consent-layer"
1345
+ ],
1346
+ "detectCmp": [
1347
+ {
1348
+ "visible": "#__tealiumGDPRecModal"
1349
+ },
1350
+ {
1351
+ "eval": "typeof window.utag !== 'undefined' && typeof utag.gdpr === 'object'"
1352
+ }
1353
+ ],
1354
+ "detectPopup": [
1355
+ {
1356
+ "visible": "#__tealiumGDPRecModal"
1357
+ }
1358
+ ],
1359
+ "optOut": [
1360
+ {
1361
+ "hide": [
1362
+ "#__tealiumGDPRecModal",
1363
+ "#__tealiumGDPRcpPrefs",
1364
+ "#consent-layer"
1365
+ ]
1366
+ },
1367
+ {
1368
+ "waitForThenClick": "#cm-acceptNone,.js-accept-essential-cookies",
1369
+ "timeout": 1000
1370
+ },
1371
+ {
1372
+ "eval": "utag.gdpr.setConsentValue(false) || true"
1373
+ }
1374
+ ],
1375
+ "optIn": [
1376
+ {
1377
+ "hide": [
1378
+ "#__tealiumGDPRecModal"
1379
+ ]
1380
+ },
1381
+ {
1382
+ "eval": "utag.gdpr.setConsentValue(true) || true"
1383
+ }
1384
+ ],
1385
+ "test": [
1386
+ {
1387
+ "eval": "utag.gdpr.getConsentState() !== 1"
1388
+ }
1389
+ ]
1390
+ },
1391
+ {
1392
+ "name": "Test page CMP",
1393
+ "prehideSelectors": [
1394
+ "#reject-all"
1395
+ ],
1396
+ "detectCmp": [
1397
+ {
1398
+ "exists": "#privacy-test-page-cmp-test"
1399
+ }
1400
+ ],
1401
+ "detectPopup": [
1402
+ {
1403
+ "visible": "#privacy-test-page-cmp-test"
1404
+ }
1405
+ ],
1406
+ "optIn": [
1407
+ {
1408
+ "click": "#accept-all"
1409
+ }
1410
+ ],
1411
+ "optOut": [
1412
+ {
1413
+ "waitFor": "#reject-all"
1414
+ },
1415
+ {
1416
+ "click": "#reject-all"
1417
+ }
1418
+ ],
1419
+ "test": [
1420
+ {
1421
+ "eval": "window.results.results[0] === 'button_clicked'"
1422
+ }
1423
+ ]
1424
+ },
1425
+ {
1426
+ "name": "thalia.de",
1427
+ "prehideSelectors": [
1428
+ ".consent-banner-box"
1429
+ ],
1430
+ "detectCmp": [
1431
+ {
1432
+ "exists": "consent-banner[component=consent-banner]"
1433
+ }
1434
+ ],
1435
+ "detectPopup": [
1436
+ {
1437
+ "visible": ".consent-banner-box"
1438
+ }
1439
+ ],
1440
+ "optIn": [
1441
+ {
1442
+ "click": ".button-zustimmen"
1443
+ }
1444
+ ],
1445
+ "optOut": [
1446
+ {
1447
+ "click": "button[data-consent=disagree]"
1448
+ }
1449
+ ]
1450
+ },
1451
+ {
1452
+ "name": "thefreedictionary.com",
1453
+ "prehideSelectors": [
1454
+ "#cmpBanner"
1455
+ ],
1456
+ "detectCmp": [
1457
+ {
1458
+ "exists": "#cmpBanner"
1459
+ }
1460
+ ],
1461
+ "detectPopup": [
1462
+ {
1463
+ "visible": "#cmpBanner"
1464
+ }
1465
+ ],
1466
+ "optIn": [
1467
+ {
1468
+ "eval": "cmpUi.allowAll() || true"
1469
+ }
1470
+ ],
1471
+ "optOut": [
1472
+ {
1473
+ "eval": "cmpUi.showPurposes() || cmpUi.rejectAll() || true"
1474
+ }
1475
+ ]
1476
+ },
1477
+ {
1478
+ "name": "usercentrics-1",
1479
+ "detectCmp": [
1480
+ {
1481
+ "exists": "#usercentrics-root"
1482
+ }
1483
+ ],
1484
+ "detectPopup": [
1485
+ {
1486
+ "eval": "!!document.querySelector('#usercentrics-root').shadowRoot.querySelector('#uc-center-container')"
1487
+ }
1488
+ ],
1489
+ "optIn": [
1490
+ {
1491
+ "eval": "!!UC_UI.acceptAllConsents()"
1492
+ },
1493
+ {
1494
+ "eval": "!!UC_UI.closeCMP()"
1495
+ },
1496
+ {
1497
+ "eval": "UC_UI.areAllConsentsAccepted() === true"
1498
+ }
1499
+ ],
1500
+ "optOut": [
1501
+ {
1502
+ "eval": "!!UC_UI.closeCMP()"
1503
+ },
1504
+ {
1505
+ "eval": "!!UC_UI.denyAllConsents()"
1506
+ }
1507
+ ],
1508
+ "test": [
1509
+ {
1510
+ "eval": "UC_UI.areAllConsentsAccepted() === false"
1511
+ }
1512
+ ]
1513
+ },
1514
+ {
1515
+ "name": "uswitch.com",
1516
+ "prehideSelectors": [
1517
+ "#cookie-banner-wrapper"
1518
+ ],
1519
+ "detectCmp": [
1520
+ {
1521
+ "exists": "#cookie-banner-wrapper"
1522
+ }
1523
+ ],
1524
+ "detectPopup": [
1525
+ {
1526
+ "visible": "#cookie-banner-wrapper"
1527
+ }
1528
+ ],
1529
+ "optIn": [
1530
+ {
1531
+ "click": "#cookie_banner_accept_mobile"
1532
+ }
1533
+ ],
1534
+ "optOut": [
1535
+ {
1536
+ "click": "#cookie_banner_save"
1537
+ }
1538
+ ]
1539
+ },
1540
+ {
1541
+ "name": "vodafone.de",
1542
+ "prehideSelectors": [
1543
+ ".dip-consent,.dip-consent-container"
1544
+ ],
1545
+ "detectCmp": [
1546
+ {
1547
+ "exists": ".dip-consent-container"
1548
+ }
1549
+ ],
1550
+ "detectPopup": [
1551
+ {
1552
+ "visible": ".dip-consent-content"
1553
+ }
1554
+ ],
1555
+ "optOut": [
1556
+ {
1557
+ "click": ".dip-consent-btn.white-btn"
1558
+ },
1559
+ {
1560
+ "eval": "Array.from(document.querySelectorAll('.dip-consent-btn.red-btn')).filter(e => e.innerText === 'Auswahl bestätigen')[0].click() || true"
1561
+ }
1562
+ ],
1563
+ "optIn": [
1564
+ {
1565
+ "click": ".dip-consent-btn.red-btn"
1566
+ }
1567
+ ]
1568
+ },
1569
+ {
1570
+ "name": "waitrose.com",
1571
+ "prehideSelectors": [
1572
+ "div[aria-labelledby=CookieAlertModalHeading]",
1573
+ "section[data-test=initial-waitrose-cookie-consent-banner]",
1574
+ "section[data-test=cookie-consent-modal]"
1575
+ ],
1576
+ "detectCmp": [
1577
+ {
1578
+ "exists": "section[data-test=initial-waitrose-cookie-consent-banner]"
1579
+ }
1580
+ ],
1581
+ "detectPopup": [
1582
+ {
1583
+ "visible": "section[data-test=initial-waitrose-cookie-consent-banner]"
1584
+ }
1585
+ ],
1586
+ "optIn": [
1587
+ {
1588
+ "click": "button[data-test=accept-all]"
1589
+ }
1590
+ ],
1591
+ "optOut": [
1592
+ {
1593
+ "click": "button[data-test=manage-cookies]"
1594
+ },
1595
+ {
1596
+ "wait": 200
1597
+ },
1598
+ {
1599
+ "eval": "Array.from(document.querySelectorAll('label[id$=cookies-deny-label]')).forEach(e => e.click()) || true"
1600
+ },
1601
+ {
1602
+ "click": "button[data-test=submit]"
1603
+ }
1604
+ ],
1605
+ "test": [
1606
+ {
1607
+ "eval": "document.cookie.includes('wtr_cookies_advertising=0') && document.cookie.includes('wtr_cookies_analytics=0')"
1608
+ }
1609
+ ]
1610
+ },
1611
+ {
1612
+ "name": "wetransfer.com",
1613
+ "detectCmp": [
1614
+ {
1615
+ "exists": ".welcome__cookie-notice"
1616
+ }
1617
+ ],
1618
+ "detectPopup": [
1619
+ {
1620
+ "visible": ".welcome__cookie-notice"
1621
+ }
1622
+ ],
1623
+ "optIn": [
1624
+ {
1625
+ "click": ".welcome__button--accept"
1626
+ }
1627
+ ],
1628
+ "optOut": [
1629
+ {
1630
+ "click": ".welcome__button--decline"
1631
+ }
1632
+ ]
1633
+ },
1634
+ {
1635
+ "name": "xing.com",
1636
+ "detectCmp": [
1637
+ {
1638
+ "exists": "div[class^=cookie-consent-CookieConsent]"
1639
+ }
1640
+ ],
1641
+ "detectPopup": [
1642
+ {
1643
+ "exists": "div[class^=cookie-consent-CookieConsent]"
1644
+ }
1645
+ ],
1646
+ "optIn": [
1647
+ {
1648
+ "click": "#consent-accept-button"
1649
+ }
1650
+ ],
1651
+ "optOut": [
1652
+ {
1653
+ "click": "#consent-settings-button"
1654
+ },
1655
+ {
1656
+ "click": ".consent-banner-button-accept-overlay"
1657
+ }
1658
+ ],
1659
+ "test": [
1660
+ {
1661
+ "eval": "document.cookie.includes('userConsent=%7B%22marketing%22%3Afalse')"
1662
+ }
1663
+ ]
1664
+ }
1665
+ ],
1666
+ "consentomatic": {
1667
+ "didomi.io": {
1668
+ "detectors": [
1669
+ {
1670
+ "presentMatcher": {
1671
+ "target": {
1672
+ "selector": "#didomi-host, #didomi-notice"
1673
+ },
1674
+ "type": "css"
1675
+ },
1676
+ "showingMatcher": {
1677
+ "target": {
1678
+ "selector": "body.didomi-popup-open, .didomi-notice-banner"
1679
+ },
1680
+ "type": "css"
1681
+ }
1682
+ }
1683
+ ],
1684
+ "methods": [
1685
+ {
1686
+ "action": {
1687
+ "target": {
1688
+ "selector": ".didomi-popup-notice-buttons .didomi-button:not(.didomi-button-highlight), .didomi-notice-banner .didomi-learn-more-button"
1689
+ },
1690
+ "type": "click"
1691
+ },
1692
+ "name": "OPEN_OPTIONS"
1693
+ },
1694
+ {
1695
+ "action": {
1696
+ "actions": [
1697
+ {
1698
+ "retries": 50,
1699
+ "target": {
1700
+ "selector": "#didomi-purpose-cookies"
1701
+ },
1702
+ "type": "waitcss",
1703
+ "waitTime": 50
1704
+ },
1705
+ {
1706
+ "consents": [
1707
+ {
1708
+ "description": "Share (everything) with others",
1709
+ "falseAction": {
1710
+ "target": {
1711
+ "selector": ".didomi-components-radio__option[aria-describedby=didomi-purpose-share_whith_others]:first-child"
1712
+ },
1713
+ "type": "click"
1714
+ },
1715
+ "trueAction": {
1716
+ "target": {
1717
+ "selector": ".didomi-components-radio__option[aria-describedby=didomi-purpose-share_whith_others]:last-child"
1718
+ },
1719
+ "type": "click"
1720
+ },
1721
+ "type": "X"
1722
+ },
1723
+ {
1724
+ "description": "Information storage and access",
1725
+ "falseAction": {
1726
+ "target": {
1727
+ "selector": ".didomi-components-radio__option[aria-describedby=didomi-purpose-cookies]:first-child"
1728
+ },
1729
+ "type": "click"
1730
+ },
1731
+ "trueAction": {
1732
+ "target": {
1733
+ "selector": ".didomi-components-radio__option[aria-describedby=didomi-purpose-cookies]:last-child"
1734
+ },
1735
+ "type": "click"
1736
+ },
1737
+ "type": "D"
1738
+ },
1739
+ {
1740
+ "description": "Content selection, offers and marketing",
1741
+ "falseAction": {
1742
+ "target": {
1743
+ "selector": ".didomi-components-radio__option[aria-describedby=didomi-purpose-CL-T1Rgm7]:first-child"
1744
+ },
1745
+ "type": "click"
1746
+ },
1747
+ "trueAction": {
1748
+ "target": {
1749
+ "selector": ".didomi-components-radio__option[aria-describedby=didomi-purpose-CL-T1Rgm7]:last-child"
1750
+ },
1751
+ "type": "click"
1752
+ },
1753
+ "type": "E"
1754
+ },
1755
+ {
1756
+ "description": "Analytics",
1757
+ "falseAction": {
1758
+ "target": {
1759
+ "selector": ".didomi-components-radio__option[aria-describedby=didomi-purpose-analytics]:first-child"
1760
+ },
1761
+ "type": "click"
1762
+ },
1763
+ "trueAction": {
1764
+ "target": {
1765
+ "selector": ".didomi-components-radio__option[aria-describedby=didomi-purpose-analytics]:last-child"
1766
+ },
1767
+ "type": "click"
1768
+ },
1769
+ "type": "B"
1770
+ },
1771
+ {
1772
+ "description": "Analytics",
1773
+ "falseAction": {
1774
+ "target": {
1775
+ "selector": ".didomi-components-radio__option[aria-describedby=didomi-purpose-M9NRHJe3G]:first-child"
1776
+ },
1777
+ "type": "click"
1778
+ },
1779
+ "trueAction": {
1780
+ "target": {
1781
+ "selector": ".didomi-components-radio__option[aria-describedby=didomi-purpose-M9NRHJe3G]:last-child"
1782
+ },
1783
+ "type": "click"
1784
+ },
1785
+ "type": "B"
1786
+ },
1787
+ {
1788
+ "description": "Ad and content selection",
1789
+ "falseAction": {
1790
+ "target": {
1791
+ "selector": ".didomi-components-radio__option[aria-describedby=didomi-purpose-advertising_personalization]:first-child"
1792
+ },
1793
+ "type": "click"
1794
+ },
1795
+ "trueAction": {
1796
+ "target": {
1797
+ "selector": ".didomi-components-radio__option[aria-describedby=didomi-purpose-advertising_personalization]:last-child"
1798
+ },
1799
+ "type": "click"
1800
+ },
1801
+ "type": "F"
1802
+ },
1803
+ {
1804
+ "description": "Ad and content selection",
1805
+ "falseAction": {
1806
+ "parent": {
1807
+ "childFilter": {
1808
+ "target": {
1809
+ "selector": "#didomi-purpose-pub-ciblee"
1810
+ }
1811
+ },
1812
+ "selector": ".didomi-consent-popup-data-processing, .didomi-components-accordion-label-container"
1813
+ },
1814
+ "target": {
1815
+ "selector": ".didomi-components-radio__option[aria-describedby=didomi-purpose-pub-ciblee]:first-child"
1816
+ },
1817
+ "type": "click"
1818
+ },
1819
+ "trueAction": {
1820
+ "target": {
1821
+ "selector": ".didomi-components-radio__option[aria-describedby=didomi-purpose-pub-ciblee]:last-child"
1822
+ },
1823
+ "type": "click"
1824
+ },
1825
+ "type": "F"
1826
+ },
1827
+ {
1828
+ "description": "Ad and content selection - basics",
1829
+ "falseAction": {
1830
+ "target": {
1831
+ "selector": ".didomi-components-radio__option[aria-describedby=didomi-purpose-q4zlJqdcD]:first-child"
1832
+ },
1833
+ "type": "click"
1834
+ },
1835
+ "trueAction": {
1836
+ "target": {
1837
+ "selector": ".didomi-components-radio__option[aria-describedby=didomi-purpose-q4zlJqdcD]:last-child"
1838
+ },
1839
+ "type": "click"
1840
+ },
1841
+ "type": "F"
1842
+ },
1843
+ {
1844
+ "description": "Ad and content selection - partners and subsidiaries",
1845
+ "falseAction": {
1846
+ "target": {
1847
+ "selector": ".didomi-components-radio__option[aria-describedby=didomi-purpose-partenaire-cAsDe8jC]:first-child"
1848
+ },
1849
+ "type": "click"
1850
+ },
1851
+ "trueAction": {
1852
+ "target": {
1853
+ "selector": ".didomi-components-radio__option[aria-describedby=didomi-purpose-partenaire-cAsDe8jC]:last-child"
1854
+ },
1855
+ "type": "click"
1856
+ },
1857
+ "type": "F"
1858
+ },
1859
+ {
1860
+ "description": "Ad and content selection - social networks",
1861
+ "falseAction": {
1862
+ "target": {
1863
+ "selector": ".didomi-components-radio__option[aria-describedby=didomi-purpose-p4em9a8m]:first-child"
1864
+ },
1865
+ "type": "click"
1866
+ },
1867
+ "trueAction": {
1868
+ "target": {
1869
+ "selector": ".didomi-components-radio__option[aria-describedby=didomi-purpose-p4em9a8m]:last-child"
1870
+ },
1871
+ "type": "click"
1872
+ },
1873
+ "type": "F"
1874
+ },
1875
+ {
1876
+ "description": "Ad and content selection - others",
1877
+ "falseAction": {
1878
+ "target": {
1879
+ "selector": ".didomi-components-radio__option[aria-describedby=didomi-purpose-autres-pub]:first-child"
1880
+ },
1881
+ "type": "click"
1882
+ },
1883
+ "trueAction": {
1884
+ "target": {
1885
+ "selector": ".didomi-components-radio__option[aria-describedby=didomi-purpose-autres-pub]:last-child"
1886
+ },
1887
+ "type": "click"
1888
+ },
1889
+ "type": "F"
1890
+ },
1891
+ {
1892
+ "description": "Social networks",
1893
+ "falseAction": {
1894
+ "target": {
1895
+ "selector": ".didomi-components-radio__option[aria-describedby=didomi-purpose-reseauxsociaux]:first-child"
1896
+ },
1897
+ "type": "click"
1898
+ },
1899
+ "trueAction": {
1900
+ "target": {
1901
+ "selector": ".didomi-components-radio__option[aria-describedby=didomi-purpose-reseauxsociaux]:last-child"
1902
+ },
1903
+ "type": "click"
1904
+ },
1905
+ "type": "A"
1906
+ },
1907
+ {
1908
+ "description": "Social networks",
1909
+ "falseAction": {
1910
+ "target": {
1911
+ "selector": ".didomi-components-radio__option[aria-describedby=didomi-purpose-social_media]:first-child"
1912
+ },
1913
+ "type": "click"
1914
+ },
1915
+ "trueAction": {
1916
+ "target": {
1917
+ "selector": ".didomi-components-radio__option[aria-describedby=didomi-purpose-social_media]:last-child"
1918
+ },
1919
+ "type": "click"
1920
+ },
1921
+ "type": "A"
1922
+ },
1923
+ {
1924
+ "description": "Content selection",
1925
+ "falseAction": {
1926
+ "target": {
1927
+ "selector": ".didomi-components-radio__option[aria-describedby=didomi-purpose-content_personalization]:first-child"
1928
+ },
1929
+ "type": "click"
1930
+ },
1931
+ "trueAction": {
1932
+ "target": {
1933
+ "selector": ".didomi-components-radio__option[aria-describedby=didomi-purpose-content_personalization]:last-child"
1934
+ },
1935
+ "type": "click"
1936
+ },
1937
+ "type": "E"
1938
+ },
1939
+ {
1940
+ "description": "Ad delivery",
1941
+ "falseAction": {
1942
+ "target": {
1943
+ "selector": ".didomi-components-radio__option[aria-describedby=didomi-purpose-ad_delivery]:first-child"
1944
+ },
1945
+ "type": "click"
1946
+ },
1947
+ "trueAction": {
1948
+ "target": {
1949
+ "selector": ".didomi-components-radio__option[aria-describedby=didomi-purpose-ad_delivery]:last-child"
1950
+ },
1951
+ "type": "click"
1952
+ },
1953
+ "type": "F"
1954
+ }
1955
+ ],
1956
+ "type": "consent"
1957
+ },
1958
+ {
1959
+ "action": {
1960
+ "consents": [
1961
+ {
1962
+ "matcher": {
1963
+ "childFilter": {
1964
+ "target": {
1965
+ "selector": ":not(.didomi-components-radio__option--selected)"
1966
+ }
1967
+ },
1968
+ "type": "css"
1969
+ },
1970
+ "trueAction": {
1971
+ "target": {
1972
+ "selector": ":nth-child(2)"
1973
+ },
1974
+ "type": "click"
1975
+ },
1976
+ "falseAction": {
1977
+ "target": {
1978
+ "selector": ":first-child"
1979
+ },
1980
+ "type": "click"
1981
+ },
1982
+ "type": "X"
1983
+ }
1984
+ ],
1985
+ "type": "consent"
1986
+ },
1987
+ "target": {
1988
+ "selector": ".didomi-components-radio"
1989
+ },
1990
+ "type": "foreach"
1991
+ }
1992
+ ],
1993
+ "type": "list"
1994
+ },
1995
+ "name": "DO_CONSENT"
1996
+ },
1997
+ {
1998
+ "action": {
1999
+ "parent": {
2000
+ "selector": ".didomi-consent-popup-footer .didomi-consent-popup-actions"
2001
+ },
2002
+ "target": {
2003
+ "selector": ".didomi-components-button:first-child"
2004
+ },
2005
+ "type": "click"
2006
+ },
2007
+ "name": "SAVE_CONSENT"
2008
+ }
2009
+ ]
2010
+ },
2011
+ "oil": {
2012
+ "detectors": [
2013
+ {
2014
+ "presentMatcher": {
2015
+ "target": {
2016
+ "selector": ".as-oil-content-overlay"
2017
+ },
2018
+ "type": "css"
2019
+ },
2020
+ "showingMatcher": {
2021
+ "target": {
2022
+ "selector": ".as-oil-content-overlay"
2023
+ },
2024
+ "type": "css"
2025
+ }
2026
+ }
2027
+ ],
2028
+ "methods": [
2029
+ {
2030
+ "action": {
2031
+ "actions": [
2032
+ {
2033
+ "target": {
2034
+ "selector": ".as-js-advanced-settings"
2035
+ },
2036
+ "type": "click"
2037
+ },
2038
+ {
2039
+ "retries": "10",
2040
+ "target": {
2041
+ "selector": ".as-oil-cpc__purpose-container"
2042
+ },
2043
+ "type": "waitcss",
2044
+ "waitTime": "250"
2045
+ }
2046
+ ],
2047
+ "type": "list"
2048
+ },
2049
+ "name": "OPEN_OPTIONS"
2050
+ },
2051
+ {
2052
+ "action": {
2053
+ "actions": [
2054
+ {
2055
+ "consents": [
2056
+ {
2057
+ "matcher": {
2058
+ "parent": {
2059
+ "selector": ".as-oil-cpc__purpose-container",
2060
+ "textFilter": [
2061
+ "Information storage and access",
2062
+ "Opbevaring af og adgang til oplysninger på din enhed"
2063
+ ]
2064
+ },
2065
+ "target": {
2066
+ "selector": "input"
2067
+ },
2068
+ "type": "checkbox"
2069
+ },
2070
+ "toggleAction": {
2071
+ "parent": {
2072
+ "selector": ".as-oil-cpc__purpose-container",
2073
+ "textFilter": [
2074
+ "Information storage and access",
2075
+ "Opbevaring af og adgang til oplysninger på din enhed"
2076
+ ]
2077
+ },
2078
+ "target": {
2079
+ "selector": ".as-oil-cpc__switch"
2080
+ },
2081
+ "type": "click"
2082
+ },
2083
+ "type": "D"
2084
+ },
2085
+ {
2086
+ "matcher": {
2087
+ "parent": {
2088
+ "selector": ".as-oil-cpc__purpose-container",
2089
+ "textFilter": [
2090
+ "Personlige annoncer",
2091
+ "Personalisation"
2092
+ ]
2093
+ },
2094
+ "target": {
2095
+ "selector": "input"
2096
+ },
2097
+ "type": "checkbox"
2098
+ },
2099
+ "toggleAction": {
2100
+ "parent": {
2101
+ "selector": ".as-oil-cpc__purpose-container",
2102
+ "textFilter": [
2103
+ "Personlige annoncer",
2104
+ "Personalisation"
2105
+ ]
2106
+ },
2107
+ "target": {
2108
+ "selector": ".as-oil-cpc__switch"
2109
+ },
2110
+ "type": "click"
2111
+ },
2112
+ "type": "E"
2113
+ },
2114
+ {
2115
+ "matcher": {
2116
+ "parent": {
2117
+ "selector": ".as-oil-cpc__purpose-container",
2118
+ "textFilter": [
2119
+ "Annoncevalg, levering og rapportering",
2120
+ "Ad selection, delivery, reporting"
2121
+ ]
2122
+ },
2123
+ "target": {
2124
+ "selector": "input"
2125
+ },
2126
+ "type": "checkbox"
2127
+ },
2128
+ "toggleAction": {
2129
+ "parent": {
2130
+ "selector": ".as-oil-cpc__purpose-container",
2131
+ "textFilter": [
2132
+ "Annoncevalg, levering og rapportering",
2133
+ "Ad selection, delivery, reporting"
2134
+ ]
2135
+ },
2136
+ "target": {
2137
+ "selector": ".as-oil-cpc__switch"
2138
+ },
2139
+ "type": "click"
2140
+ },
2141
+ "type": "F"
2142
+ },
2143
+ {
2144
+ "matcher": {
2145
+ "parent": {
2146
+ "selector": ".as-oil-cpc__purpose-container",
2147
+ "textFilter": [
2148
+ "Personalisering af indhold",
2149
+ "Content selection, delivery, reporting"
2150
+ ]
2151
+ },
2152
+ "target": {
2153
+ "selector": "input"
2154
+ },
2155
+ "type": "checkbox"
2156
+ },
2157
+ "toggleAction": {
2158
+ "parent": {
2159
+ "selector": ".as-oil-cpc__purpose-container",
2160
+ "textFilter": [
2161
+ "Personalisering af indhold",
2162
+ "Content selection, delivery, reporting"
2163
+ ]
2164
+ },
2165
+ "target": {
2166
+ "selector": ".as-oil-cpc__switch"
2167
+ },
2168
+ "type": "click"
2169
+ },
2170
+ "type": "E"
2171
+ },
2172
+ {
2173
+ "matcher": {
2174
+ "parent": {
2175
+ "childFilter": {
2176
+ "target": {
2177
+ "selector": ".as-oil-cpc__purpose-header",
2178
+ "textFilter": [
2179
+ "Måling",
2180
+ "Measurement"
2181
+ ]
2182
+ }
2183
+ },
2184
+ "selector": ".as-oil-cpc__purpose-container"
2185
+ },
2186
+ "target": {
2187
+ "selector": "input"
2188
+ },
2189
+ "type": "checkbox"
2190
+ },
2191
+ "toggleAction": {
2192
+ "parent": {
2193
+ "childFilter": {
2194
+ "target": {
2195
+ "selector": ".as-oil-cpc__purpose-header",
2196
+ "textFilter": [
2197
+ "Måling",
2198
+ "Measurement"
2199
+ ]
2200
+ }
2201
+ },
2202
+ "selector": ".as-oil-cpc__purpose-container"
2203
+ },
2204
+ "target": {
2205
+ "selector": ".as-oil-cpc__switch"
2206
+ },
2207
+ "type": "click"
2208
+ },
2209
+ "type": "B"
2210
+ },
2211
+ {
2212
+ "matcher": {
2213
+ "parent": {
2214
+ "selector": ".as-oil-cpc__purpose-container",
2215
+ "textFilter": "Google"
2216
+ },
2217
+ "target": {
2218
+ "selector": "input"
2219
+ },
2220
+ "type": "checkbox"
2221
+ },
2222
+ "toggleAction": {
2223
+ "parent": {
2224
+ "selector": ".as-oil-cpc__purpose-container",
2225
+ "textFilter": "Google"
2226
+ },
2227
+ "target": {
2228
+ "selector": ".as-oil-cpc__switch"
2229
+ },
2230
+ "type": "click"
2231
+ },
2232
+ "type": "F"
2233
+ }
2234
+ ],
2235
+ "type": "consent"
2236
+ }
2237
+ ],
2238
+ "type": "list"
2239
+ },
2240
+ "name": "DO_CONSENT"
2241
+ },
2242
+ {
2243
+ "action": {
2244
+ "target": {
2245
+ "selector": ".as-oil__btn-optin"
2246
+ },
2247
+ "type": "click"
2248
+ },
2249
+ "name": "SAVE_CONSENT"
2250
+ },
2251
+ {
2252
+ "action": {
2253
+ "target": {
2254
+ "selector": "div.as-oil"
2255
+ },
2256
+ "type": "hide"
2257
+ },
2258
+ "name": "HIDE_CMP"
2259
+ }
2260
+ ]
2261
+ },
2262
+ "optanon": {
2263
+ "detectors": [
2264
+ {
2265
+ "presentMatcher": {
2266
+ "target": {
2267
+ "selector": "#optanon-menu, .optanon-alert-box-wrapper"
2268
+ },
2269
+ "type": "css"
2270
+ },
2271
+ "showingMatcher": {
2272
+ "target": {
2273
+ "displayFilter": true,
2274
+ "selector": ".optanon-alert-box-wrapper"
2275
+ },
2276
+ "type": "css"
2277
+ }
2278
+ }
2279
+ ],
2280
+ "methods": [
2281
+ {
2282
+ "action": {
2283
+ "actions": [
2284
+ {
2285
+ "target": {
2286
+ "selector": ".optanon-alert-box-wrapper .optanon-toggle-display, a[onclick*='OneTrust.ToggleInfoDisplay()'], a[onclick*='Optanon.ToggleInfoDisplay()']"
2287
+ },
2288
+ "type": "click"
2289
+ }
2290
+ ],
2291
+ "type": "list"
2292
+ },
2293
+ "name": "OPEN_OPTIONS"
2294
+ },
2295
+ {
2296
+ "action": {
2297
+ "actions": [
2298
+ {
2299
+ "target": {
2300
+ "selector": ".preference-menu-item #Your-privacy"
2301
+ },
2302
+ "type": "click"
2303
+ },
2304
+ {
2305
+ "target": {
2306
+ "selector": "#optanon-vendor-consent-text"
2307
+ },
2308
+ "type": "click"
2309
+ },
2310
+ {
2311
+ "action": {
2312
+ "consents": [
2313
+ {
2314
+ "matcher": {
2315
+ "target": {
2316
+ "selector": "input"
2317
+ },
2318
+ "type": "checkbox"
2319
+ },
2320
+ "toggleAction": {
2321
+ "target": {
2322
+ "selector": "label"
2323
+ },
2324
+ "type": "click"
2325
+ },
2326
+ "type": "X"
2327
+ }
2328
+ ],
2329
+ "type": "consent"
2330
+ },
2331
+ "target": {
2332
+ "selector": "#optanon-vendor-consent-list .vendor-item"
2333
+ },
2334
+ "type": "foreach"
2335
+ },
2336
+ {
2337
+ "target": {
2338
+ "selector": ".vendor-consent-back-link"
2339
+ },
2340
+ "type": "click"
2341
+ },
2342
+ {
2343
+ "parent": {
2344
+ "selector": "#optanon-menu, .optanon-menu"
2345
+ },
2346
+ "target": {
2347
+ "selector": ".menu-item-performance"
2348
+ },
2349
+ "trueAction": {
2350
+ "actions": [
2351
+ {
2352
+ "parent": {
2353
+ "selector": "#optanon-menu, .optanon-menu"
2354
+ },
2355
+ "target": {
2356
+ "selector": ".menu-item-performance"
2357
+ },
2358
+ "type": "click"
2359
+ },
2360
+ {
2361
+ "consents": [
2362
+ {
2363
+ "matcher": {
2364
+ "parent": {
2365
+ "selector": "#optanon-popup-body-right"
2366
+ },
2367
+ "target": {
2368
+ "selector": ".optanon-status input"
2369
+ },
2370
+ "type": "checkbox"
2371
+ },
2372
+ "toggleAction": {
2373
+ "parent": {
2374
+ "selector": "#optanon-popup-body-right"
2375
+ },
2376
+ "target": {
2377
+ "selector": ".optanon-status label"
2378
+ },
2379
+ "type": "click"
2380
+ },
2381
+ "type": "B"
2382
+ }
2383
+ ],
2384
+ "type": "consent"
2385
+ }
2386
+ ],
2387
+ "type": "list"
2388
+ },
2389
+ "type": "ifcss"
2390
+ },
2391
+ {
2392
+ "parent": {
2393
+ "selector": "#optanon-menu, .optanon-menu"
2394
+ },
2395
+ "target": {
2396
+ "selector": ".menu-item-functional"
2397
+ },
2398
+ "trueAction": {
2399
+ "actions": [
2400
+ {
2401
+ "parent": {
2402
+ "selector": "#optanon-menu, .optanon-menu"
2403
+ },
2404
+ "target": {
2405
+ "selector": ".menu-item-functional"
2406
+ },
2407
+ "type": "click"
2408
+ },
2409
+ {
2410
+ "consents": [
2411
+ {
2412
+ "matcher": {
2413
+ "parent": {
2414
+ "selector": "#optanon-popup-body-right"
2415
+ },
2416
+ "target": {
2417
+ "selector": ".optanon-status input"
2418
+ },
2419
+ "type": "checkbox"
2420
+ },
2421
+ "toggleAction": {
2422
+ "parent": {
2423
+ "selector": "#optanon-popup-body-right"
2424
+ },
2425
+ "target": {
2426
+ "selector": ".optanon-status label"
2427
+ },
2428
+ "type": "click"
2429
+ },
2430
+ "type": "E"
2431
+ }
2432
+ ],
2433
+ "type": "consent"
2434
+ }
2435
+ ],
2436
+ "type": "list"
2437
+ },
2438
+ "type": "ifcss"
2439
+ },
2440
+ {
2441
+ "parent": {
2442
+ "selector": "#optanon-menu, .optanon-menu"
2443
+ },
2444
+ "target": {
2445
+ "selector": ".menu-item-advertising"
2446
+ },
2447
+ "trueAction": {
2448
+ "actions": [
2449
+ {
2450
+ "parent": {
2451
+ "selector": "#optanon-menu, .optanon-menu"
2452
+ },
2453
+ "target": {
2454
+ "selector": ".menu-item-advertising"
2455
+ },
2456
+ "type": "click"
2457
+ },
2458
+ {
2459
+ "consents": [
2460
+ {
2461
+ "matcher": {
2462
+ "parent": {
2463
+ "selector": "#optanon-popup-body-right"
2464
+ },
2465
+ "target": {
2466
+ "selector": ".optanon-status input"
2467
+ },
2468
+ "type": "checkbox"
2469
+ },
2470
+ "toggleAction": {
2471
+ "parent": {
2472
+ "selector": "#optanon-popup-body-right"
2473
+ },
2474
+ "target": {
2475
+ "selector": ".optanon-status label"
2476
+ },
2477
+ "type": "click"
2478
+ },
2479
+ "type": "F"
2480
+ }
2481
+ ],
2482
+ "type": "consent"
2483
+ }
2484
+ ],
2485
+ "type": "list"
2486
+ },
2487
+ "type": "ifcss"
2488
+ },
2489
+ {
2490
+ "parent": {
2491
+ "selector": "#optanon-menu, .optanon-menu"
2492
+ },
2493
+ "target": {
2494
+ "selector": ".menu-item-social"
2495
+ },
2496
+ "trueAction": {
2497
+ "actions": [
2498
+ {
2499
+ "parent": {
2500
+ "selector": "#optanon-menu, .optanon-menu"
2501
+ },
2502
+ "target": {
2503
+ "selector": ".menu-item-social"
2504
+ },
2505
+ "type": "click"
2506
+ },
2507
+ {
2508
+ "consents": [
2509
+ {
2510
+ "matcher": {
2511
+ "parent": {
2512
+ "selector": "#optanon-popup-body-right"
2513
+ },
2514
+ "target": {
2515
+ "selector": ".optanon-status input"
2516
+ },
2517
+ "type": "checkbox"
2518
+ },
2519
+ "toggleAction": {
2520
+ "parent": {
2521
+ "selector": "#optanon-popup-body-right"
2522
+ },
2523
+ "target": {
2524
+ "selector": ".optanon-status label"
2525
+ },
2526
+ "type": "click"
2527
+ },
2528
+ "type": "B"
2529
+ }
2530
+ ],
2531
+ "type": "consent"
2532
+ }
2533
+ ],
2534
+ "type": "list"
2535
+ },
2536
+ "type": "ifcss"
2537
+ },
2538
+ {
2539
+ "parent": {
2540
+ "selector": "#optanon-menu, .optanon-menu"
2541
+ },
2542
+ "target": {
2543
+ "selector": ".menu-item-necessary",
2544
+ "textFilter": "Social Media Cookies"
2545
+ },
2546
+ "trueAction": {
2547
+ "actions": [
2548
+ {
2549
+ "parent": {
2550
+ "selector": "#optanon-menu, .optanon-menu"
2551
+ },
2552
+ "target": {
2553
+ "selector": ".menu-item-necessary",
2554
+ "textFilter": "Social Media Cookies"
2555
+ },
2556
+ "type": "click"
2557
+ },
2558
+ {
2559
+ "consents": [
2560
+ {
2561
+ "matcher": {
2562
+ "parent": {
2563
+ "selector": "#optanon-popup-body-right"
2564
+ },
2565
+ "target": {
2566
+ "selector": ".optanon-status input"
2567
+ },
2568
+ "type": "checkbox"
2569
+ },
2570
+ "toggleAction": {
2571
+ "parent": {
2572
+ "selector": "#optanon-popup-body-right"
2573
+ },
2574
+ "target": {
2575
+ "selector": ".optanon-status label"
2576
+ },
2577
+ "type": "click"
2578
+ },
2579
+ "type": "B"
2580
+ }
2581
+ ],
2582
+ "type": "consent"
2583
+ }
2584
+ ],
2585
+ "type": "list"
2586
+ },
2587
+ "type": "ifcss"
2588
+ },
2589
+ {
2590
+ "parent": {
2591
+ "selector": "#optanon-menu, .optanon-menu"
2592
+ },
2593
+ "target": {
2594
+ "selector": ".menu-item-necessary",
2595
+ "textFilter": "Personalisation"
2596
+ },
2597
+ "trueAction": {
2598
+ "actions": [
2599
+ {
2600
+ "parent": {
2601
+ "selector": "#optanon-menu, .optanon-menu"
2602
+ },
2603
+ "target": {
2604
+ "selector": ".menu-item-necessary",
2605
+ "textFilter": "Personalisation"
2606
+ },
2607
+ "type": "click"
2608
+ },
2609
+ {
2610
+ "consents": [
2611
+ {
2612
+ "matcher": {
2613
+ "parent": {
2614
+ "selector": "#optanon-popup-body-right"
2615
+ },
2616
+ "target": {
2617
+ "selector": ".optanon-status input"
2618
+ },
2619
+ "type": "checkbox"
2620
+ },
2621
+ "toggleAction": {
2622
+ "parent": {
2623
+ "selector": "#optanon-popup-body-right"
2624
+ },
2625
+ "target": {
2626
+ "selector": ".optanon-status label"
2627
+ },
2628
+ "type": "click"
2629
+ },
2630
+ "type": "E"
2631
+ }
2632
+ ],
2633
+ "type": "consent"
2634
+ }
2635
+ ],
2636
+ "type": "list"
2637
+ },
2638
+ "type": "ifcss"
2639
+ },
2640
+ {
2641
+ "parent": {
2642
+ "selector": "#optanon-menu, .optanon-menu"
2643
+ },
2644
+ "target": {
2645
+ "selector": ".menu-item-necessary",
2646
+ "textFilter": "Site monitoring cookies"
2647
+ },
2648
+ "trueAction": {
2649
+ "actions": [
2650
+ {
2651
+ "parent": {
2652
+ "selector": "#optanon-menu, .optanon-menu"
2653
+ },
2654
+ "target": {
2655
+ "selector": ".menu-item-necessary",
2656
+ "textFilter": "Site monitoring cookies"
2657
+ },
2658
+ "type": "click"
2659
+ },
2660
+ {
2661
+ "consents": [
2662
+ {
2663
+ "matcher": {
2664
+ "parent": {
2665
+ "selector": "#optanon-popup-body-right"
2666
+ },
2667
+ "target": {
2668
+ "selector": ".optanon-status input"
2669
+ },
2670
+ "type": "checkbox"
2671
+ },
2672
+ "toggleAction": {
2673
+ "parent": {
2674
+ "selector": "#optanon-popup-body-right"
2675
+ },
2676
+ "target": {
2677
+ "selector": ".optanon-status label"
2678
+ },
2679
+ "type": "click"
2680
+ },
2681
+ "type": "B"
2682
+ }
2683
+ ],
2684
+ "type": "consent"
2685
+ }
2686
+ ],
2687
+ "type": "list"
2688
+ },
2689
+ "type": "ifcss"
2690
+ },
2691
+ {
2692
+ "parent": {
2693
+ "selector": "#optanon-menu, .optanon-menu"
2694
+ },
2695
+ "target": {
2696
+ "selector": ".menu-item-necessary",
2697
+ "textFilter": "Third party privacy-enhanced content"
2698
+ },
2699
+ "trueAction": {
2700
+ "actions": [
2701
+ {
2702
+ "parent": {
2703
+ "selector": "#optanon-menu, .optanon-menu"
2704
+ },
2705
+ "target": {
2706
+ "selector": ".menu-item-necessary",
2707
+ "textFilter": "Third party privacy-enhanced content"
2708
+ },
2709
+ "type": "click"
2710
+ },
2711
+ {
2712
+ "consents": [
2713
+ {
2714
+ "matcher": {
2715
+ "parent": {
2716
+ "selector": "#optanon-popup-body-right"
2717
+ },
2718
+ "target": {
2719
+ "selector": ".optanon-status input"
2720
+ },
2721
+ "type": "checkbox"
2722
+ },
2723
+ "toggleAction": {
2724
+ "parent": {
2725
+ "selector": "#optanon-popup-body-right"
2726
+ },
2727
+ "target": {
2728
+ "selector": ".optanon-status label"
2729
+ },
2730
+ "type": "click"
2731
+ },
2732
+ "type": "X"
2733
+ }
2734
+ ],
2735
+ "type": "consent"
2736
+ }
2737
+ ],
2738
+ "type": "list"
2739
+ },
2740
+ "type": "ifcss"
2741
+ },
2742
+ {
2743
+ "parent": {
2744
+ "selector": "#optanon-menu, .optanon-menu"
2745
+ },
2746
+ "target": {
2747
+ "selector": ".menu-item-necessary",
2748
+ "textFilter": "Performance & Advertising Cookies"
2749
+ },
2750
+ "trueAction": {
2751
+ "actions": [
2752
+ {
2753
+ "parent": {
2754
+ "selector": "#optanon-menu, .optanon-menu"
2755
+ },
2756
+ "target": {
2757
+ "selector": ".menu-item-necessary",
2758
+ "textFilter": "Performance & Advertising Cookies"
2759
+ },
2760
+ "type": "click"
2761
+ },
2762
+ {
2763
+ "consents": [
2764
+ {
2765
+ "matcher": {
2766
+ "parent": {
2767
+ "selector": "#optanon-popup-body-right"
2768
+ },
2769
+ "target": {
2770
+ "selector": ".optanon-status input"
2771
+ },
2772
+ "type": "checkbox"
2773
+ },
2774
+ "toggleAction": {
2775
+ "parent": {
2776
+ "selector": "#optanon-popup-body-right"
2777
+ },
2778
+ "target": {
2779
+ "selector": ".optanon-status label"
2780
+ },
2781
+ "type": "click"
2782
+ },
2783
+ "type": "F"
2784
+ }
2785
+ ],
2786
+ "type": "consent"
2787
+ }
2788
+ ],
2789
+ "type": "list"
2790
+ },
2791
+ "type": "ifcss"
2792
+ },
2793
+ {
2794
+ "parent": {
2795
+ "selector": "#optanon-menu, .optanon-menu"
2796
+ },
2797
+ "target": {
2798
+ "selector": ".menu-item-necessary",
2799
+ "textFilter": "Information storage and access"
2800
+ },
2801
+ "trueAction": {
2802
+ "actions": [
2803
+ {
2804
+ "parent": {
2805
+ "selector": "#optanon-menu, .optanon-menu"
2806
+ },
2807
+ "target": {
2808
+ "selector": ".menu-item-necessary",
2809
+ "textFilter": "Information storage and access"
2810
+ },
2811
+ "type": "click"
2812
+ },
2813
+ {
2814
+ "consents": [
2815
+ {
2816
+ "matcher": {
2817
+ "parent": {
2818
+ "selector": "#optanon-popup-body-right"
2819
+ },
2820
+ "target": {
2821
+ "selector": ".optanon-status input"
2822
+ },
2823
+ "type": "checkbox"
2824
+ },
2825
+ "toggleAction": {
2826
+ "parent": {
2827
+ "selector": "#optanon-popup-body-right"
2828
+ },
2829
+ "target": {
2830
+ "selector": ".optanon-status label"
2831
+ },
2832
+ "type": "click"
2833
+ },
2834
+ "type": "D"
2835
+ }
2836
+ ],
2837
+ "type": "consent"
2838
+ }
2839
+ ],
2840
+ "type": "list"
2841
+ },
2842
+ "type": "ifcss"
2843
+ },
2844
+ {
2845
+ "parent": {
2846
+ "selector": "#optanon-menu, .optanon-menu"
2847
+ },
2848
+ "target": {
2849
+ "selector": ".menu-item-necessary",
2850
+ "textFilter": "Ad selection, delivery, reporting"
2851
+ },
2852
+ "trueAction": {
2853
+ "actions": [
2854
+ {
2855
+ "parent": {
2856
+ "selector": "#optanon-menu, .optanon-menu"
2857
+ },
2858
+ "target": {
2859
+ "selector": ".menu-item-necessary",
2860
+ "textFilter": "Ad selection, delivery, reporting"
2861
+ },
2862
+ "type": "click"
2863
+ },
2864
+ {
2865
+ "consents": [
2866
+ {
2867
+ "matcher": {
2868
+ "parent": {
2869
+ "selector": "#optanon-popup-body-right"
2870
+ },
2871
+ "target": {
2872
+ "selector": ".optanon-status input"
2873
+ },
2874
+ "type": "checkbox"
2875
+ },
2876
+ "toggleAction": {
2877
+ "parent": {
2878
+ "selector": "#optanon-popup-body-right"
2879
+ },
2880
+ "target": {
2881
+ "selector": ".optanon-status label"
2882
+ },
2883
+ "type": "click"
2884
+ },
2885
+ "type": "F"
2886
+ }
2887
+ ],
2888
+ "type": "consent"
2889
+ }
2890
+ ],
2891
+ "type": "list"
2892
+ },
2893
+ "type": "ifcss"
2894
+ },
2895
+ {
2896
+ "parent": {
2897
+ "selector": "#optanon-menu, .optanon-menu"
2898
+ },
2899
+ "target": {
2900
+ "selector": ".menu-item-necessary",
2901
+ "textFilter": "Content selection, delivery, reporting"
2902
+ },
2903
+ "trueAction": {
2904
+ "actions": [
2905
+ {
2906
+ "parent": {
2907
+ "selector": "#optanon-menu, .optanon-menu"
2908
+ },
2909
+ "target": {
2910
+ "selector": ".menu-item-necessary",
2911
+ "textFilter": "Content selection, delivery, reporting"
2912
+ },
2913
+ "type": "click"
2914
+ },
2915
+ {
2916
+ "consents": [
2917
+ {
2918
+ "matcher": {
2919
+ "parent": {
2920
+ "selector": "#optanon-popup-body-right"
2921
+ },
2922
+ "target": {
2923
+ "selector": ".optanon-status input"
2924
+ },
2925
+ "type": "checkbox"
2926
+ },
2927
+ "toggleAction": {
2928
+ "parent": {
2929
+ "selector": "#optanon-popup-body-right"
2930
+ },
2931
+ "target": {
2932
+ "selector": ".optanon-status label"
2933
+ },
2934
+ "type": "click"
2935
+ },
2936
+ "type": "E"
2937
+ }
2938
+ ],
2939
+ "type": "consent"
2940
+ }
2941
+ ],
2942
+ "type": "list"
2943
+ },
2944
+ "type": "ifcss"
2945
+ },
2946
+ {
2947
+ "parent": {
2948
+ "selector": "#optanon-menu, .optanon-menu"
2949
+ },
2950
+ "target": {
2951
+ "selector": ".menu-item-necessary",
2952
+ "textFilter": "Measurement"
2953
+ },
2954
+ "trueAction": {
2955
+ "actions": [
2956
+ {
2957
+ "parent": {
2958
+ "selector": "#optanon-menu, .optanon-menu"
2959
+ },
2960
+ "target": {
2961
+ "selector": ".menu-item-necessary",
2962
+ "textFilter": "Measurement"
2963
+ },
2964
+ "type": "click"
2965
+ },
2966
+ {
2967
+ "consents": [
2968
+ {
2969
+ "matcher": {
2970
+ "parent": {
2971
+ "selector": "#optanon-popup-body-right"
2972
+ },
2973
+ "target": {
2974
+ "selector": ".optanon-status input"
2975
+ },
2976
+ "type": "checkbox"
2977
+ },
2978
+ "toggleAction": {
2979
+ "parent": {
2980
+ "selector": "#optanon-popup-body-right"
2981
+ },
2982
+ "target": {
2983
+ "selector": ".optanon-status label"
2984
+ },
2985
+ "type": "click"
2986
+ },
2987
+ "type": "B"
2988
+ }
2989
+ ],
2990
+ "type": "consent"
2991
+ }
2992
+ ],
2993
+ "type": "list"
2994
+ },
2995
+ "type": "ifcss"
2996
+ },
2997
+ {
2998
+ "parent": {
2999
+ "selector": "#optanon-menu, .optanon-menu"
3000
+ },
3001
+ "target": {
3002
+ "selector": ".menu-item-necessary",
3003
+ "textFilter": "Recommended Cookies"
3004
+ },
3005
+ "trueAction": {
3006
+ "actions": [
3007
+ {
3008
+ "parent": {
3009
+ "selector": "#optanon-menu, .optanon-menu"
3010
+ },
3011
+ "target": {
3012
+ "selector": ".menu-item-necessary",
3013
+ "textFilter": "Recommended Cookies"
3014
+ },
3015
+ "type": "click"
3016
+ },
3017
+ {
3018
+ "consents": [
3019
+ {
3020
+ "matcher": {
3021
+ "parent": {
3022
+ "selector": "#optanon-popup-body-right"
3023
+ },
3024
+ "target": {
3025
+ "selector": ".optanon-status input"
3026
+ },
3027
+ "type": "checkbox"
3028
+ },
3029
+ "toggleAction": {
3030
+ "parent": {
3031
+ "selector": "#optanon-popup-body-right"
3032
+ },
3033
+ "target": {
3034
+ "selector": ".optanon-status label"
3035
+ },
3036
+ "type": "click"
3037
+ },
3038
+ "type": "X"
3039
+ }
3040
+ ],
3041
+ "type": "consent"
3042
+ }
3043
+ ],
3044
+ "type": "list"
3045
+ },
3046
+ "type": "ifcss"
3047
+ },
3048
+ {
3049
+ "parent": {
3050
+ "selector": "#optanon-menu, .optanon-menu"
3051
+ },
3052
+ "target": {
3053
+ "selector": ".menu-item-necessary",
3054
+ "textFilter": "Unclassified Cookies"
3055
+ },
3056
+ "trueAction": {
3057
+ "actions": [
3058
+ {
3059
+ "parent": {
3060
+ "selector": "#optanon-menu, .optanon-menu"
3061
+ },
3062
+ "target": {
3063
+ "selector": ".menu-item-necessary",
3064
+ "textFilter": "Unclassified Cookies"
3065
+ },
3066
+ "type": "click"
3067
+ },
3068
+ {
3069
+ "consents": [
3070
+ {
3071
+ "matcher": {
3072
+ "parent": {
3073
+ "selector": "#optanon-popup-body-right"
3074
+ },
3075
+ "target": {
3076
+ "selector": ".optanon-status input"
3077
+ },
3078
+ "type": "checkbox"
3079
+ },
3080
+ "toggleAction": {
3081
+ "parent": {
3082
+ "selector": "#optanon-popup-body-right"
3083
+ },
3084
+ "target": {
3085
+ "selector": ".optanon-status label"
3086
+ },
3087
+ "type": "click"
3088
+ },
3089
+ "type": "X"
3090
+ }
3091
+ ],
3092
+ "type": "consent"
3093
+ }
3094
+ ],
3095
+ "type": "list"
3096
+ },
3097
+ "type": "ifcss"
3098
+ },
3099
+ {
3100
+ "parent": {
3101
+ "selector": "#optanon-menu, .optanon-menu"
3102
+ },
3103
+ "target": {
3104
+ "selector": ".menu-item-necessary",
3105
+ "textFilter": "Analytical Cookies"
3106
+ },
3107
+ "trueAction": {
3108
+ "actions": [
3109
+ {
3110
+ "parent": {
3111
+ "selector": "#optanon-menu, .optanon-menu"
3112
+ },
3113
+ "target": {
3114
+ "selector": ".menu-item-necessary",
3115
+ "textFilter": "Analytical Cookies"
3116
+ },
3117
+ "type": "click"
3118
+ },
3119
+ {
3120
+ "consents": [
3121
+ {
3122
+ "matcher": {
3123
+ "parent": {
3124
+ "selector": "#optanon-popup-body-right"
3125
+ },
3126
+ "target": {
3127
+ "selector": ".optanon-status input"
3128
+ },
3129
+ "type": "checkbox"
3130
+ },
3131
+ "toggleAction": {
3132
+ "parent": {
3133
+ "selector": "#optanon-popup-body-right"
3134
+ },
3135
+ "target": {
3136
+ "selector": ".optanon-status label"
3137
+ },
3138
+ "type": "click"
3139
+ },
3140
+ "type": "B"
3141
+ }
3142
+ ],
3143
+ "type": "consent"
3144
+ }
3145
+ ],
3146
+ "type": "list"
3147
+ },
3148
+ "type": "ifcss"
3149
+ },
3150
+ {
3151
+ "parent": {
3152
+ "selector": "#optanon-menu, .optanon-menu"
3153
+ },
3154
+ "target": {
3155
+ "selector": ".menu-item-necessary",
3156
+ "textFilter": "Marketing Cookies"
3157
+ },
3158
+ "trueAction": {
3159
+ "actions": [
3160
+ {
3161
+ "parent": {
3162
+ "selector": "#optanon-menu, .optanon-menu"
3163
+ },
3164
+ "target": {
3165
+ "selector": ".menu-item-necessary",
3166
+ "textFilter": "Marketing Cookies"
3167
+ },
3168
+ "type": "click"
3169
+ },
3170
+ {
3171
+ "consents": [
3172
+ {
3173
+ "matcher": {
3174
+ "parent": {
3175
+ "selector": "#optanon-popup-body-right"
3176
+ },
3177
+ "target": {
3178
+ "selector": ".optanon-status input"
3179
+ },
3180
+ "type": "checkbox"
3181
+ },
3182
+ "toggleAction": {
3183
+ "parent": {
3184
+ "selector": "#optanon-popup-body-right"
3185
+ },
3186
+ "target": {
3187
+ "selector": ".optanon-status label"
3188
+ },
3189
+ "type": "click"
3190
+ },
3191
+ "type": "F"
3192
+ }
3193
+ ],
3194
+ "type": "consent"
3195
+ }
3196
+ ],
3197
+ "type": "list"
3198
+ },
3199
+ "type": "ifcss"
3200
+ },
3201
+ {
3202
+ "parent": {
3203
+ "selector": "#optanon-menu, .optanon-menu"
3204
+ },
3205
+ "target": {
3206
+ "selector": ".menu-item-necessary",
3207
+ "textFilter": "Personalization"
3208
+ },
3209
+ "trueAction": {
3210
+ "actions": [
3211
+ {
3212
+ "parent": {
3213
+ "selector": "#optanon-menu, .optanon-menu"
3214
+ },
3215
+ "target": {
3216
+ "selector": ".menu-item-necessary",
3217
+ "textFilter": "Personalization"
3218
+ },
3219
+ "type": "click"
3220
+ },
3221
+ {
3222
+ "consents": [
3223
+ {
3224
+ "matcher": {
3225
+ "parent": {
3226
+ "selector": "#optanon-popup-body-right"
3227
+ },
3228
+ "target": {
3229
+ "selector": ".optanon-status input"
3230
+ },
3231
+ "type": "checkbox"
3232
+ },
3233
+ "toggleAction": {
3234
+ "parent": {
3235
+ "selector": "#optanon-popup-body-right"
3236
+ },
3237
+ "target": {
3238
+ "selector": ".optanon-status label"
3239
+ },
3240
+ "type": "click"
3241
+ },
3242
+ "type": "E"
3243
+ }
3244
+ ],
3245
+ "type": "consent"
3246
+ }
3247
+ ],
3248
+ "type": "list"
3249
+ },
3250
+ "type": "ifcss"
3251
+ },
3252
+ {
3253
+ "parent": {
3254
+ "selector": "#optanon-menu, .optanon-menu"
3255
+ },
3256
+ "target": {
3257
+ "selector": ".menu-item-necessary",
3258
+ "textFilter": "Ad Selection, Delivery & Reporting"
3259
+ },
3260
+ "trueAction": {
3261
+ "actions": [
3262
+ {
3263
+ "parent": {
3264
+ "selector": "#optanon-menu, .optanon-menu"
3265
+ },
3266
+ "target": {
3267
+ "selector": ".menu-item-necessary",
3268
+ "textFilter": "Ad Selection, Delivery & Reporting"
3269
+ },
3270
+ "type": "click"
3271
+ },
3272
+ {
3273
+ "consents": [
3274
+ {
3275
+ "matcher": {
3276
+ "parent": {
3277
+ "selector": "#optanon-popup-body-right"
3278
+ },
3279
+ "target": {
3280
+ "selector": ".optanon-status input"
3281
+ },
3282
+ "type": "checkbox"
3283
+ },
3284
+ "toggleAction": {
3285
+ "parent": {
3286
+ "selector": "#optanon-popup-body-right"
3287
+ },
3288
+ "target": {
3289
+ "selector": ".optanon-status label"
3290
+ },
3291
+ "type": "click"
3292
+ },
3293
+ "type": "F"
3294
+ }
3295
+ ],
3296
+ "type": "consent"
3297
+ }
3298
+ ],
3299
+ "type": "list"
3300
+ },
3301
+ "type": "ifcss"
3302
+ },
3303
+ {
3304
+ "parent": {
3305
+ "selector": "#optanon-menu, .optanon-menu"
3306
+ },
3307
+ "target": {
3308
+ "selector": ".menu-item-necessary",
3309
+ "textFilter": "Content Selection, Delivery & Reporting"
3310
+ },
3311
+ "trueAction": {
3312
+ "actions": [
3313
+ {
3314
+ "parent": {
3315
+ "selector": "#optanon-menu, .optanon-menu"
3316
+ },
3317
+ "target": {
3318
+ "selector": ".menu-item-necessary",
3319
+ "textFilter": "Content Selection, Delivery & Reporting"
3320
+ },
3321
+ "type": "click"
3322
+ },
3323
+ {
3324
+ "consents": [
3325
+ {
3326
+ "matcher": {
3327
+ "parent": {
3328
+ "selector": "#optanon-popup-body-right"
3329
+ },
3330
+ "target": {
3331
+ "selector": ".optanon-status input"
3332
+ },
3333
+ "type": "checkbox"
3334
+ },
3335
+ "toggleAction": {
3336
+ "parent": {
3337
+ "selector": "#optanon-popup-body-right"
3338
+ },
3339
+ "target": {
3340
+ "selector": ".optanon-status label"
3341
+ },
3342
+ "type": "click"
3343
+ },
3344
+ "type": "E"
3345
+ }
3346
+ ],
3347
+ "type": "consent"
3348
+ }
3349
+ ],
3350
+ "type": "list"
3351
+ },
3352
+ "type": "ifcss"
3353
+ }
3354
+ ],
3355
+ "type": "list"
3356
+ },
3357
+ "name": "DO_CONSENT"
3358
+ },
3359
+ {
3360
+ "action": {
3361
+ "parent": {
3362
+ "selector": ".optanon-save-settings-button"
3363
+ },
3364
+ "target": {
3365
+ "selector": ".optanon-white-button-middle"
3366
+ },
3367
+ "type": "click"
3368
+ },
3369
+ "name": "SAVE_CONSENT"
3370
+ },
3371
+ {
3372
+ "action": {
3373
+ "actions": [
3374
+ {
3375
+ "target": {
3376
+ "selector": "#optanon-popup-wrapper"
3377
+ },
3378
+ "type": "hide"
3379
+ },
3380
+ {
3381
+ "target": {
3382
+ "selector": "#optanon-popup-bg"
3383
+ },
3384
+ "type": "hide"
3385
+ },
3386
+ {
3387
+ "target": {
3388
+ "selector": ".optanon-alert-box-wrapper"
3389
+ },
3390
+ "type": "hide"
3391
+ }
3392
+ ],
3393
+ "type": "list"
3394
+ },
3395
+ "name": "HIDE_CMP"
3396
+ }
3397
+ ]
3398
+ },
3399
+ "quantcast2": {
3400
+ "detectors": [
3401
+ {
3402
+ "presentMatcher": {
3403
+ "target": {
3404
+ "selector": "[data-tracking-opt-in-overlay]"
3405
+ },
3406
+ "type": "css"
3407
+ },
3408
+ "showingMatcher": {
3409
+ "target": {
3410
+ "selector": "[data-tracking-opt-in-overlay] [data-tracking-opt-in-learn-more]"
3411
+ },
3412
+ "type": "css"
3413
+ }
3414
+ }
3415
+ ],
3416
+ "methods": [
3417
+ {
3418
+ "action": {
3419
+ "target": {
3420
+ "selector": "[data-tracking-opt-in-overlay] [data-tracking-opt-in-learn-more]"
3421
+ },
3422
+ "type": "click"
3423
+ },
3424
+ "name": "OPEN_OPTIONS"
3425
+ },
3426
+ {
3427
+ "action": {
3428
+ "actions": [
3429
+ {
3430
+ "type": "wait",
3431
+ "waitTime": 500
3432
+ },
3433
+ {
3434
+ "action": {
3435
+ "actions": [
3436
+ {
3437
+ "target": {
3438
+ "selector": "div",
3439
+ "textFilter": [
3440
+ "Information storage and access"
3441
+ ]
3442
+ },
3443
+ "trueAction": {
3444
+ "consents": [
3445
+ {
3446
+ "matcher": {
3447
+ "target": {
3448
+ "selector": "input"
3449
+ },
3450
+ "type": "checkbox"
3451
+ },
3452
+ "toggleAction": {
3453
+ "target": {
3454
+ "selector": "label"
3455
+ },
3456
+ "type": "click"
3457
+ },
3458
+ "type": "D"
3459
+ }
3460
+ ],
3461
+ "type": "consent"
3462
+ },
3463
+ "type": "ifcss"
3464
+ },
3465
+ {
3466
+ "target": {
3467
+ "selector": "div",
3468
+ "textFilter": [
3469
+ "Personalization"
3470
+ ]
3471
+ },
3472
+ "trueAction": {
3473
+ "consents": [
3474
+ {
3475
+ "matcher": {
3476
+ "target": {
3477
+ "selector": "input"
3478
+ },
3479
+ "type": "checkbox"
3480
+ },
3481
+ "toggleAction": {
3482
+ "target": {
3483
+ "selector": "label"
3484
+ },
3485
+ "type": "click"
3486
+ },
3487
+ "type": "F"
3488
+ }
3489
+ ],
3490
+ "type": "consent"
3491
+ },
3492
+ "type": "ifcss"
3493
+ },
3494
+ {
3495
+ "target": {
3496
+ "selector": "div",
3497
+ "textFilter": [
3498
+ "Ad selection, delivery, reporting"
3499
+ ]
3500
+ },
3501
+ "trueAction": {
3502
+ "consents": [
3503
+ {
3504
+ "matcher": {
3505
+ "target": {
3506
+ "selector": "input"
3507
+ },
3508
+ "type": "checkbox"
3509
+ },
3510
+ "toggleAction": {
3511
+ "target": {
3512
+ "selector": "label"
3513
+ },
3514
+ "type": "click"
3515
+ },
3516
+ "type": "F"
3517
+ }
3518
+ ],
3519
+ "type": "consent"
3520
+ },
3521
+ "type": "ifcss"
3522
+ },
3523
+ {
3524
+ "target": {
3525
+ "selector": "div",
3526
+ "textFilter": [
3527
+ "Content selection, delivery, reporting"
3528
+ ]
3529
+ },
3530
+ "trueAction": {
3531
+ "consents": [
3532
+ {
3533
+ "matcher": {
3534
+ "target": {
3535
+ "selector": "input"
3536
+ },
3537
+ "type": "checkbox"
3538
+ },
3539
+ "toggleAction": {
3540
+ "target": {
3541
+ "selector": "label"
3542
+ },
3543
+ "type": "click"
3544
+ },
3545
+ "type": "E"
3546
+ }
3547
+ ],
3548
+ "type": "consent"
3549
+ },
3550
+ "type": "ifcss"
3551
+ },
3552
+ {
3553
+ "target": {
3554
+ "selector": "div",
3555
+ "textFilter": [
3556
+ "Measurement"
3557
+ ]
3558
+ },
3559
+ "trueAction": {
3560
+ "consents": [
3561
+ {
3562
+ "matcher": {
3563
+ "target": {
3564
+ "selector": "input"
3565
+ },
3566
+ "type": "checkbox"
3567
+ },
3568
+ "toggleAction": {
3569
+ "target": {
3570
+ "selector": "label"
3571
+ },
3572
+ "type": "click"
3573
+ },
3574
+ "type": "B"
3575
+ }
3576
+ ],
3577
+ "type": "consent"
3578
+ },
3579
+ "type": "ifcss"
3580
+ },
3581
+ {
3582
+ "target": {
3583
+ "selector": "div",
3584
+ "textFilter": [
3585
+ "Other Partners"
3586
+ ]
3587
+ },
3588
+ "trueAction": {
3589
+ "consents": [
3590
+ {
3591
+ "matcher": {
3592
+ "target": {
3593
+ "selector": "input"
3594
+ },
3595
+ "type": "checkbox"
3596
+ },
3597
+ "toggleAction": {
3598
+ "target": {
3599
+ "selector": "label"
3600
+ },
3601
+ "type": "click"
3602
+ },
3603
+ "type": "X"
3604
+ }
3605
+ ],
3606
+ "type": "consent"
3607
+ },
3608
+ "type": "ifcss"
3609
+ }
3610
+ ],
3611
+ "type": "list"
3612
+ },
3613
+ "parent": {
3614
+ "childFilter": {
3615
+ "target": {
3616
+ "selector": "input"
3617
+ }
3618
+ },
3619
+ "selector": "[data-tracking-opt-in-overlay] > div > div"
3620
+ },
3621
+ "target": {
3622
+ "childFilter": {
3623
+ "target": {
3624
+ "selector": "input"
3625
+ }
3626
+ },
3627
+ "selector": ":scope > div"
3628
+ },
3629
+ "type": "foreach"
3630
+ }
3631
+ ],
3632
+ "type": "list"
3633
+ },
3634
+ "name": "DO_CONSENT"
3635
+ },
3636
+ {
3637
+ "action": {
3638
+ "target": {
3639
+ "selector": "[data-tracking-opt-in-overlay] [data-tracking-opt-in-save]"
3640
+ },
3641
+ "type": "click"
3642
+ },
3643
+ "name": "SAVE_CONSENT"
3644
+ }
3645
+ ]
3646
+ },
3647
+ "springer": {
3648
+ "detectors": [
3649
+ {
3650
+ "presentMatcher": {
3651
+ "parent": null,
3652
+ "target": {
3653
+ "selector": ".cmp-app_gdpr"
3654
+ },
3655
+ "type": "css"
3656
+ },
3657
+ "showingMatcher": {
3658
+ "parent": null,
3659
+ "target": {
3660
+ "displayFilter": true,
3661
+ "selector": ".cmp-popup_popup"
3662
+ },
3663
+ "type": "css"
3664
+ }
3665
+ }
3666
+ ],
3667
+ "methods": [
3668
+ {
3669
+ "action": {
3670
+ "actions": [
3671
+ {
3672
+ "target": {
3673
+ "selector": ".cmp-intro_rejectAll"
3674
+ },
3675
+ "type": "click"
3676
+ },
3677
+ {
3678
+ "type": "wait",
3679
+ "waitTime": 250
3680
+ },
3681
+ {
3682
+ "target": {
3683
+ "selector": ".cmp-purposes_purposeItem:not(.cmp-purposes_selectedPurpose)"
3684
+ },
3685
+ "type": "click"
3686
+ }
3687
+ ],
3688
+ "type": "list"
3689
+ },
3690
+ "name": "OPEN_OPTIONS"
3691
+ },
3692
+ {
3693
+ "action": {
3694
+ "consents": [
3695
+ {
3696
+ "matcher": {
3697
+ "parent": {
3698
+ "selector": ".cmp-purposes_detailHeader",
3699
+ "textFilter": "Przechowywanie informacji na urządzeniu lub dostęp do nich",
3700
+ "childFilter": {
3701
+ "target": {
3702
+ "selector": ".cmp-switch_switch"
3703
+ }
3704
+ }
3705
+ },
3706
+ "target": {
3707
+ "selector": ".cmp-switch_switch .cmp-switch_isSelected"
3708
+ },
3709
+ "type": "css"
3710
+ },
3711
+ "toggleAction": {
3712
+ "parent": {
3713
+ "selector": ".cmp-purposes_detailHeader",
3714
+ "textFilter": "Przechowywanie informacji na urządzeniu lub dostęp do nich",
3715
+ "childFilter": {
3716
+ "target": {
3717
+ "selector": ".cmp-switch_switch"
3718
+ }
3719
+ }
3720
+ },
3721
+ "target": {
3722
+ "selector": ".cmp-switch_switch:not(.cmp-switch_isSelected)"
3723
+ },
3724
+ "type": "click"
3725
+ },
3726
+ "type": "D"
3727
+ },
3728
+ {
3729
+ "matcher": {
3730
+ "parent": {
3731
+ "selector": ".cmp-purposes_detailHeader",
3732
+ "textFilter": "Wybór podstawowych reklam",
3733
+ "childFilter": {
3734
+ "target": {
3735
+ "selector": ".cmp-switch_switch"
3736
+ }
3737
+ }
3738
+ },
3739
+ "target": {
3740
+ "selector": ".cmp-switch_switch .cmp-switch_isSelected"
3741
+ },
3742
+ "type": "css"
3743
+ },
3744
+ "toggleAction": {
3745
+ "parent": {
3746
+ "selector": ".cmp-purposes_detailHeader",
3747
+ "textFilter": "Wybór podstawowych reklam",
3748
+ "childFilter": {
3749
+ "target": {
3750
+ "selector": ".cmp-switch_switch"
3751
+ }
3752
+ }
3753
+ },
3754
+ "target": {
3755
+ "selector": ".cmp-switch_switch:not(.cmp-switch_isSelected)"
3756
+ },
3757
+ "type": "click"
3758
+ },
3759
+ "type": "F"
3760
+ },
3761
+ {
3762
+ "matcher": {
3763
+ "parent": {
3764
+ "selector": ".cmp-purposes_detailHeader",
3765
+ "textFilter": "Tworzenie profilu spersonalizowanych reklam",
3766
+ "childFilter": {
3767
+ "target": {
3768
+ "selector": ".cmp-switch_switch"
3769
+ }
3770
+ }
3771
+ },
3772
+ "target": {
3773
+ "selector": ".cmp-switch_switch .cmp-switch_isSelected"
3774
+ },
3775
+ "type": "css"
3776
+ },
3777
+ "toggleAction": {
3778
+ "parent": {
3779
+ "selector": ".cmp-purposes_detailHeader",
3780
+ "textFilter": "Tworzenie profilu spersonalizowanych reklam",
3781
+ "childFilter": {
3782
+ "target": {
3783
+ "selector": ".cmp-switch_switch"
3784
+ }
3785
+ }
3786
+ },
3787
+ "target": {
3788
+ "selector": ".cmp-switch_switch:not(.cmp-switch_isSelected)"
3789
+ },
3790
+ "type": "click"
3791
+ },
3792
+ "type": "F"
3793
+ },
3794
+ {
3795
+ "matcher": {
3796
+ "parent": {
3797
+ "selector": ".cmp-purposes_detailHeader",
3798
+ "textFilter": "Wybór spersonalizowanych reklam",
3799
+ "childFilter": {
3800
+ "target": {
3801
+ "selector": ".cmp-switch_switch"
3802
+ }
3803
+ }
3804
+ },
3805
+ "target": {
3806
+ "selector": ".cmp-switch_switch .cmp-switch_isSelected"
3807
+ },
3808
+ "type": "css"
3809
+ },
3810
+ "toggleAction": {
3811
+ "parent": {
3812
+ "selector": ".cmp-purposes_detailHeader",
3813
+ "textFilter": "Wybór spersonalizowanych reklam",
3814
+ "childFilter": {
3815
+ "target": {
3816
+ "selector": ".cmp-switch_switch"
3817
+ }
3818
+ }
3819
+ },
3820
+ "target": {
3821
+ "selector": ".cmp-switch_switch:not(.cmp-switch_isSelected)"
3822
+ },
3823
+ "type": "click"
3824
+ },
3825
+ "type": "E"
3826
+ },
3827
+ {
3828
+ "matcher": {
3829
+ "parent": {
3830
+ "selector": ".cmp-purposes_detailHeader",
3831
+ "textFilter": "Tworzenie profilu spersonalizowanych treści",
3832
+ "childFilter": {
3833
+ "target": {
3834
+ "selector": ".cmp-switch_switch"
3835
+ }
3836
+ }
3837
+ },
3838
+ "target": {
3839
+ "selector": ".cmp-switch_switch .cmp-switch_isSelected"
3840
+ },
3841
+ "type": "css"
3842
+ },
3843
+ "toggleAction": {
3844
+ "parent": {
3845
+ "selector": ".cmp-purposes_detailHeader",
3846
+ "textFilter": "Tworzenie profilu spersonalizowanych treści",
3847
+ "childFilter": {
3848
+ "target": {
3849
+ "selector": ".cmp-switch_switch"
3850
+ }
3851
+ }
3852
+ },
3853
+ "target": {
3854
+ "selector": ".cmp-switch_switch:not(.cmp-switch_isSelected)"
3855
+ },
3856
+ "type": "click"
3857
+ },
3858
+ "type": "E"
3859
+ },
3860
+ {
3861
+ "matcher": {
3862
+ "parent": {
3863
+ "selector": ".cmp-purposes_detailHeader",
3864
+ "textFilter": "Wybór spersonalizowanych treści",
3865
+ "childFilter": {
3866
+ "target": {
3867
+ "selector": ".cmp-switch_switch"
3868
+ }
3869
+ }
3870
+ },
3871
+ "target": {
3872
+ "selector": ".cmp-switch_switch .cmp-switch_isSelected"
3873
+ },
3874
+ "type": "css"
3875
+ },
3876
+ "toggleAction": {
3877
+ "parent": {
3878
+ "selector": ".cmp-purposes_detailHeader",
3879
+ "textFilter": "Wybór spersonalizowanych treści",
3880
+ "childFilter": {
3881
+ "target": {
3882
+ "selector": ".cmp-switch_switch"
3883
+ }
3884
+ }
3885
+ },
3886
+ "target": {
3887
+ "selector": ".cmp-switch_switch:not(.cmp-switch_isSelected)"
3888
+ },
3889
+ "type": "click"
3890
+ },
3891
+ "type": "B"
3892
+ },
3893
+ {
3894
+ "matcher": {
3895
+ "parent": {
3896
+ "selector": ".cmp-purposes_detailHeader",
3897
+ "textFilter": "Pomiar wydajności reklam",
3898
+ "childFilter": {
3899
+ "target": {
3900
+ "selector": ".cmp-switch_switch"
3901
+ }
3902
+ }
3903
+ },
3904
+ "target": {
3905
+ "selector": ".cmp-switch_switch .cmp-switch_isSelected"
3906
+ },
3907
+ "type": "css"
3908
+ },
3909
+ "toggleAction": {
3910
+ "parent": {
3911
+ "selector": ".cmp-purposes_detailHeader",
3912
+ "textFilter": "Pomiar wydajności reklam",
3913
+ "childFilter": {
3914
+ "target": {
3915
+ "selector": ".cmp-switch_switch"
3916
+ }
3917
+ }
3918
+ },
3919
+ "target": {
3920
+ "selector": ".cmp-switch_switch:not(.cmp-switch_isSelected)"
3921
+ },
3922
+ "type": "click"
3923
+ },
3924
+ "type": "B"
3925
+ },
3926
+ {
3927
+ "matcher": {
3928
+ "parent": {
3929
+ "selector": ".cmp-purposes_detailHeader",
3930
+ "textFilter": "Pomiar wydajności treści",
3931
+ "childFilter": {
3932
+ "target": {
3933
+ "selector": ".cmp-switch_switch"
3934
+ }
3935
+ }
3936
+ },
3937
+ "target": {
3938
+ "selector": ".cmp-switch_switch .cmp-switch_isSelected"
3939
+ },
3940
+ "type": "css"
3941
+ },
3942
+ "toggleAction": {
3943
+ "parent": {
3944
+ "selector": ".cmp-purposes_detailHeader",
3945
+ "textFilter": "Pomiar wydajności treści",
3946
+ "childFilter": {
3947
+ "target": {
3948
+ "selector": ".cmp-switch_switch"
3949
+ }
3950
+ }
3951
+ },
3952
+ "target": {
3953
+ "selector": ".cmp-switch_switch:not(.cmp-switch_isSelected)"
3954
+ },
3955
+ "type": "click"
3956
+ },
3957
+ "type": "B"
3958
+ },
3959
+ {
3960
+ "matcher": {
3961
+ "parent": {
3962
+ "selector": ".cmp-purposes_detailHeader",
3963
+ "textFilter": "Stosowanie badań rynkowych w celu generowania opinii odbiorców",
3964
+ "childFilter": {
3965
+ "target": {
3966
+ "selector": ".cmp-switch_switch"
3967
+ }
3968
+ }
3969
+ },
3970
+ "target": {
3971
+ "selector": ".cmp-switch_switch .cmp-switch_isSelected"
3972
+ },
3973
+ "type": "css"
3974
+ },
3975
+ "toggleAction": {
3976
+ "parent": {
3977
+ "selector": ".cmp-purposes_detailHeader",
3978
+ "textFilter": "Stosowanie badań rynkowych w celu generowania opinii odbiorców",
3979
+ "childFilter": {
3980
+ "target": {
3981
+ "selector": ".cmp-switch_switch"
3982
+ }
3983
+ }
3984
+ },
3985
+ "target": {
3986
+ "selector": ".cmp-switch_switch:not(.cmp-switch_isSelected)"
3987
+ },
3988
+ "type": "click"
3989
+ },
3990
+ "type": "X"
3991
+ },
3992
+ {
3993
+ "matcher": {
3994
+ "parent": {
3995
+ "selector": ".cmp-purposes_detailHeader",
3996
+ "textFilter": "Opracowywanie i ulepszanie produktów",
3997
+ "childFilter": {
3998
+ "target": {
3999
+ "selector": ".cmp-switch_switch"
4000
+ }
4001
+ }
4002
+ },
4003
+ "target": {
4004
+ "selector": ".cmp-switch_switch .cmp-switch_isSelected"
4005
+ },
4006
+ "type": "css"
4007
+ },
4008
+ "toggleAction": {
4009
+ "parent": {
4010
+ "selector": ".cmp-purposes_detailHeader",
4011
+ "textFilter": "Opracowywanie i ulepszanie produktów",
4012
+ "childFilter": {
4013
+ "target": {
4014
+ "selector": ".cmp-switch_switch"
4015
+ }
4016
+ }
4017
+ },
4018
+ "target": {
4019
+ "selector": ".cmp-switch_switch:not(.cmp-switch_isSelected)"
4020
+ },
4021
+ "type": "click"
4022
+ },
4023
+ "type": "X"
4024
+ }
4025
+ ],
4026
+ "type": "consent"
4027
+ },
4028
+ "name": "DO_CONSENT"
4029
+ },
4030
+ {
4031
+ "action": {
4032
+ "target": {
4033
+ "selector": ".cmp-details_save"
4034
+ },
4035
+ "type": "click"
4036
+ },
4037
+ "name": "SAVE_CONSENT"
4038
+ }
4039
+ ]
4040
+ },
4041
+ "wordpressgdpr": {
4042
+ "detectors": [
4043
+ {
4044
+ "presentMatcher": {
4045
+ "parent": null,
4046
+ "target": {
4047
+ "selector": ".wpgdprc-consent-bar"
4048
+ },
4049
+ "type": "css"
4050
+ },
4051
+ "showingMatcher": {
4052
+ "parent": null,
4053
+ "target": {
4054
+ "displayFilter": true,
4055
+ "selector": ".wpgdprc-consent-bar"
4056
+ },
4057
+ "type": "css"
4058
+ }
4059
+ }
4060
+ ],
4061
+ "methods": [
4062
+ {
4063
+ "action": {
4064
+ "parent": null,
4065
+ "target": {
4066
+ "selector": ".wpgdprc-consent-bar .wpgdprc-consent-bar__settings",
4067
+ "textFilter": null
4068
+ },
4069
+ "type": "click"
4070
+ },
4071
+ "name": "OPEN_OPTIONS"
4072
+ },
4073
+ {
4074
+ "action": {
4075
+ "actions": [
4076
+ {
4077
+ "target": {
4078
+ "selector": ".wpgdprc-consent-modal .wpgdprc-button",
4079
+ "textFilter": "Eyeota"
4080
+ },
4081
+ "type": "click"
4082
+ },
4083
+ {
4084
+ "consents": [
4085
+ {
4086
+ "description": "Eyeota Cookies",
4087
+ "matcher": {
4088
+ "parent": {
4089
+ "selector": ".wpgdprc-consent-modal__description",
4090
+ "textFilter": "Eyeota"
4091
+ },
4092
+ "target": {
4093
+ "selector": "input"
4094
+ },
4095
+ "type": "checkbox"
4096
+ },
4097
+ "toggleAction": {
4098
+ "parent": {
4099
+ "selector": ".wpgdprc-consent-modal__description",
4100
+ "textFilter": "Eyeota"
4101
+ },
4102
+ "target": {
4103
+ "selector": "label"
4104
+ },
4105
+ "type": "click"
4106
+ },
4107
+ "type": "X"
4108
+ }
4109
+ ],
4110
+ "type": "consent"
4111
+ },
4112
+ {
4113
+ "target": {
4114
+ "selector": ".wpgdprc-consent-modal .wpgdprc-button",
4115
+ "textFilter": "Advertising"
4116
+ },
4117
+ "type": "click"
4118
+ },
4119
+ {
4120
+ "consents": [
4121
+ {
4122
+ "description": "Advertising Cookies",
4123
+ "matcher": {
4124
+ "parent": {
4125
+ "selector": ".wpgdprc-consent-modal__description",
4126
+ "textFilter": "Advertising"
4127
+ },
4128
+ "target": {
4129
+ "selector": "input"
4130
+ },
4131
+ "type": "checkbox"
4132
+ },
4133
+ "toggleAction": {
4134
+ "parent": {
4135
+ "selector": ".wpgdprc-consent-modal__description",
4136
+ "textFilter": "Advertising"
4137
+ },
4138
+ "target": {
4139
+ "selector": "label"
4140
+ },
4141
+ "type": "click"
4142
+ },
4143
+ "type": "F"
4144
+ }
4145
+ ],
4146
+ "type": "consent"
4147
+ }
4148
+ ],
4149
+ "type": "list"
4150
+ },
4151
+ "name": "DO_CONSENT"
4152
+ },
4153
+ {
4154
+ "action": {
4155
+ "parent": null,
4156
+ "target": {
4157
+ "selector": ".wpgdprc-button",
4158
+ "textFilter": "Save my settings"
4159
+ },
4160
+ "type": "click"
4161
+ },
4162
+ "name": "SAVE_CONSENT"
4163
+ }
4164
+ ]
4165
+ }
4166
+ }
4167
+ }