-
Notifications
You must be signed in to change notification settings - Fork 1
/
AlfGuardAnnoyancesFilter.txt
11481 lines (11481 loc) · 620 KB
/
AlfGuardAnnoyancesFilter.txt
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
[Adblock Plus 2.0]
! Title: AlfGuard Annoyances Filter
! Last modified: 2019-03-24
! Author: Alf Shumway
! Expires: 3 hours
! Homepage: https://github.com/alfs123/AlfGuard
! Licence: https://raw.githubusercontent.com/alfs123/AlfGuardAnnoyancesFilter/master/LICENSE.md
! Description: Blocks irritating elements on web pages including cookie notices, third-party widgets and in-page pop-ups.
!
!-------------------------------------------------------------------!
!------------------ General JS API ---------------------------------!
!-------------------------------------------------------------------!
! JS API START
#%#var AG_onLoad=function(func){if(document.readyState==="complete"||document.readyState==="interactive")func();else if(document.addEventListener)document.addEventListener("DOMContentLoaded",func);else if(document.attachEvent)document.attachEvent("DOMContentLoaded",func)};
#%#var AG_removeElementById = function(id) { var element = document.getElementById(id); if (element && element.parentNode) { element.parentNode.removeChild(element); }};
#%#var AG_removeElementBySelector = function(selector) { if (!document.querySelectorAll) { return; } var nodes = document.querySelectorAll(selector); if (nodes) { for (var i = 0; i < nodes.length; i++) { if (nodes[i] && nodes[i].parentNode) { nodes[i].parentNode.removeChild(nodes[i]); } } } };
#%#var AG_each = function(selector, fn) { if (!document.querySelectorAll) return; var elements = document.querySelectorAll(selector); for (var i = 0; i < elements.length; i++) { fn(elements[i]); }; };
#%#var AG_removeParent = function(el, fn) { while (el && el.parentNode) { if (fn(el)) { el.parentNode.removeChild(el); return; } el = el.parentNode; } };
!
! AG_removeCookie
! Examples: AG_removeCookie('/REGEX/') or AG_removeCookie('part of the cookie name')
!
#%#var AG_removeCookie=function(b){var c=/./;/^\/.+\/$/.test(b)?c=new RegExp(b.slice(1,-1)):""!==b&&(c=new RegExp(b.replace(/[.*+?^${}()|[\]\\]/g,"\\$&")));b=function(){for(var b=document.cookie.split(";"),d=b.length;d--;){cookieStr=b[d];var a=cookieStr.indexOf("=");if(-1!==a&&(a=cookieStr.slice(0,a).trim(),c.test(a))){a+="=";var e="; domain="+document.location.hostname,f="; domain=."+document.location.hostname;document.cookie=a+"; expires=Thu, 01 Jan 1970 00:00:00 GMT";document.cookie=a+e+"; expires=Thu, 01 Jan 1970 00:00:00 GMT";document.cookie=a+f+"; expires=Thu, 01 Jan 1970 00:00:00 GMT";document.cookie=a+"; path=/; expires=Thu, 01 Jan 1970 00:00:00 GMT";document.cookie=a+e+"; path=/; expires=Thu, 01 Jan 1970 00:00:00 GMT";document.cookie=a+f+"; path=/; expires=Thu, 01 Jan 1970 00:00:00 GMT"}}};b();window.addEventListener("beforeunload",b)};
!
! AG_defineProperty
! See https://github.com/AdguardTeam/deep-override
!
#%#var AG_defineProperty=function(){var p,q=Object.defineProperty;if("function"==typeof WeakMap)p=WeakMap;else{var r=0,t=function(){this.a=(r+=Math.random()).toString()};t.prototype.set=function(a,b){var d=a[this.a];d&&d[0]===a?d[1]=b:q(a,this.a,{value:[a,b],writable:!0});return this};t.prototype.get=function(a){var b;return(b=a[this.a])&&b[0]===a?b[1]:void 0};t.prototype.has=function(a){var b=a[this.a];return b?b[0]===a:!1};p=t}function u(a){this.b=a;this.h=Object.create(null)}function v(a,b,d,e){this.a=a;this.i=b;this.c=d;this.f=e}function w(){this.g=/^([^\\\.]|\\.)*?\./;this.j=/\\(.)/g;this.a=new p}function x(a,b){var d=b.f;if(d&&!("beforeGet"in d||"beforeSet"in d))return z(d);var e={get:function(){var c=b.f;c&&c.beforeGet&&c.beforeGet.call(this,b.a.b);a:if(c=b.g)c=A(c)?c.value:c.get?c.get.call(this):void 0;else{c=b.a.b;if(b.i in c&&(c=B(c),null!==c)){var d=C.call(c,b.i);c=d?d.call(this):c[b.i];break a}c=void 0}(this===b.a.b||D.call(b.a.b,this))&&E(a,c,b.c);return c},set:function(c){if(this===b.a.b||D.call(b.a.b,this)){b.f&&b.f.beforeSet&&(c=b.f.beforeSet.call(this,c,this));var d=b.g;d&&A(d)&&d.value===c?c=!0:(d=F(b,c,this),G(c)&&(c=H(a,c),I(a,c,b.c)),c=d)}else c=F(b,c,this);return c}};d&&J(d,e,K);return e}function I(a,b,d){for(var e in d.h){var c=d.h[e];if(b.h[e]){var h=a,g=b.h[e],k=c;!k.f||g.f||"undefined"===typeof g.a.b||g.g||(g.g=z(k.f));g.c&&k.c&&g.c!==k.c&&I(h,g.c,k.c)}else{g=h=void 0;k=a;var f=b,l=c.i,m="undefined"!==typeof f.b,y=!1;m&&(g=L(f.b,l))&&!g.configurable&&(y=!0,h=f.b[l]);var n=y?H(k,h):new u(c.c.b);I(k,n,c.c);n=new v(f,l,n,c.f);f.h[l]=n;m&&(n.g=g,m=x(k,n),y?E(k,h,c.c):(q(f.b,l,m),g&&A(g)&&(M(m,g.value,f.b),E(k,g.value,c.c))))}}}function E(a,b,d){G(b)&&(b=H(a,b),I(a,b,d))}function F(a,b,d){var e=a.g;if(!e){e=B(a.a.b);if(null!==e&&(e=N.call(e,a.i)))return e.call(d,b);if(!O(a.a.b))return!1;a.g={value:b,configurable:!0,writable:!0,enumerable:!0};return!0}return M(e,b,d)}function H(a,b){var d=a.a.get(b);d||(d=new u(b),a.a.set(b,d));return d}function A(a){return"undefined"!==typeof a.writable}function J(a,b,d){for(var e=0,c=d.length;e<c;e++){var h=d[e];h in a&&(b[h]=a[h])}}function z(a){if(a){var b={};J(a,b,P);return b}}function M(a,b,d){if(A(a))return a.writable?(a.value=b,!0):!1;if(!a.set)return!1;a.set.call(d,b);return!0}var P="configurable enumerable value get set writable".split(" "),K=P.slice(0,2),L=Object.getOwnPropertyDescriptor,O=Object.isExtensible,B=Object.getPrototypeOf,D=Object.prototype.isPrototypeOf,C=Object.prototype.__lookupGetter__||function(a){return(a=Q(this,a))&&a.get?a.get:void 0},N=Object.prototype.__lookupSetter__||function(a){return(a=Q(this,a))&&a.set?a.set:void 0};function Q(a,b){if(b in a){for(;!w.hasOwnProperty.call(a,b);)a=B(a);return L(a,b)}}function G(a){var b=typeof a;return"function"===b||"object"===b&&null!==a?!0:!1}var R;return function(a,b,d){R||(R=new w);var e=R;d=d||window;var c=new u;a+=".";var h=c||new u;for(var g=e.g,k=e.j,f,l,m;a;){f=g.exec(a);if(null===f)throw 1;f=f[0].length;l=a.slice(0,f-1).replace(k,"$1");a=a.slice(f);(f=h.h[l])?m=f.c:(m=new u,f=new v(h,l,m),h.h[l]=f);h=m}if(!f)throw 1;a=f;a.f=b;E(e,d,c)};}();
!
! AG_abortInlineScript(functionRegex, 'property.chain')
! Aborts execution of a function that matches "functionRegex" when accessing a property defined by "property.chain"
! Based on AG_defineProperty
!
! Examples:
! AG_abortInlineScript(/zfgloadedpopup|zfgloadedpushopt/, 'String.fromCharCode');
!
#%#var AG_abortInlineScript=function(d,e,f){var c;if("currentScript"in document)var b=function(){return document.currentScript};else b=function(){var a=document.getElementsByTagName("script");return a[a.length-1]},window.addEventListener("DOMContentLoaded",function(){b=function(){return null}});AG_defineProperty(e,{beforeGet:function(){var a=b();if(a&&a!==c&&(c=a,""===a.src&&d.test(a.textContent)))throw setTimeout(function(){console.warn("AdGuard aborted an execution of an inline script")}),null;}},f)};
!
! AG_setConstant('property.chain', 'true') // defines boolean (true), same for false;
! AG_setConstant('property.chain', '123') // defines Number 123;
! AG_setConstant('property.chain', 'noopFunc') // defines function(){};
! AG_setConstant('property.chain', 'trueFunc') // defines function(){return true};
! AG_setConstant('property.chain', 'falseFunc') // defines function(){return false};
#%#var AG_setConstant=function(e,a){if("undefined"===a)a=void 0;else if("false"===a)a=!1;else if("true"===a)a=!0;else if("noopFunc"===a)a=function(){};else if("trueFunc"===a)a=function(){return!0};else if("falseFunc"===a)a=function(){return!1};else if(/^\d+$/.test(a)){if(a=parseFloat(a),isNaN(a)||32767<Math.abs(a))return}else return;var b=!1;AG_defineProperty(e,{get:function(){return a},set:function(c){if(b)var d=!0;else void 0!==c&&void 0!==a&&typeof c!==typeof a&&(b=!0),d=b;d&&(a=c)}})};
! JS API FINISH
!-------------------------------------------------------------------!
!---------------------- Annoyances ---------------------------------!
!-------------------------------------------------------------------!
!
!######### Annoying elements (not ads)
!
! https://github.com/AdguardTeam/AdguardFilters/issues/29612
ltn.com.tw#%#AG_onLoad(function() { $('div[class^="photo picbox 1 photoOn"] > a[href="//draw.ltn.com.tw/slot_v8/"]').closest('div.picbox.\\31').remove(); });
! https://github.com/AdguardTeam/AdguardFilters/issues/28876
instagram.com##.ZUqME.N9d2H[style="width: 100%;"]
! https://github.com/AdguardTeam/AdguardFilters/issues/28313
play.shikimori.org##.about-ads
! https://github.com/AdguardTeam/AdguardFilters/issues/29802
last.fm##.nag-bar--language-mismatch-prompt
! https://github.com/AdguardTeam/AdguardFilters/issues/29341
ritmoteka.ru##body > div[align="center"] > center > table> tbody > tr > td[height="300"]
! https://github.com/AdguardTeam/AdguardFilters/issues/27922
manjemedia.com#$#html.cp-overflow-hidden { overflow: visible!important; }
manjemedia.com#$#.cp-modal-popup-container.cp_id_592ce { display: none!important; }
@@||manjemedia.com/wp-content/plugins/convertplug/modules/assets/images/default.png
! https://github.com/AdguardTeam/AdguardFilters/issues/29547
mangashow3.me,mangashow2.me##body > .noti-popup
! https://github.com/AdguardTeam/AdguardFilters/issues/29419
voltimum.com.tr#$##vlt-article-body { filter:none!important; }
voltimum.com.tr#$##myMod.overlay { display:none!important; }
! https://github.com/AdguardTeam/AdguardFilters/issues/29107
thestar.com##.meter-banner
thestar.com##.articleMeterBanner
thestar.com##.secondary-header
! https://github.com/AdguardTeam/AdguardFilters/issues/28183
fainaidea.com##.td-footer-wrapper > div.td-container
! https://github.com/AdguardTeam/AdguardFilters/issues/29264
desired.de#$#body { padding-top: 0!important; }
desired.de#$#a#teaserheld-header-desktop[href^="https://www.surveymonkey.de/"] { display: none!important; }
! https://github.com/AdguardTeam/AdguardFilters/issues/29095
spieletipps.de##a#teaserheld-header-non-sticky[href^="https://www.surveymonkey.de/"]
! https://forum.adguard.com/index.php?threads/4tube-com-nsfw.30550/
4tube.com##.kodplayer-extras
! https://github.com/AdguardTeam/AdguardFilters/issues/28829
travelask.ru##.addPhoto-banner
! https://github.com/AdguardTeam/AdguardFilters/issues/28532
britannica.com###marketing-slider
||cdn.britannica.com/mendel/curiosity/eb-mendel-curiosity-300x90c.png
! https://github.com/AdguardTeam/AdguardFilters/issues/28653
pinme.ru#%#document.cookie = "hide-collage-promo-block=1";
! Snow on the page
/wp-content/plugins/snow-3d/*
! https://github.com/AdguardTeam/AdguardFilters/issues/29013
forum.smartsworld.ru##.xenfocus-snow
! https://github.com/AdguardTeam/AdguardFilters/issues/28258
tw.yahoo.com##.tabbar-signin > .feature-cue > .FancyBox.Arrow.Tooltip
! https://github.com/AdguardTeam/AdguardFilters/issues/28342
idntimes.com###videoPlaylistPlugId.convertoFloatClass
! https://github.com/AdguardTeam/AdguardFilters/issues/28119
pcgamer.com##.leaderboardAdPresent
! https://github.com/AdguardTeam/AdguardFilters/issues/24697
gnavi.co.jp##.hatena-module-body .hatena-fotolife[alt][width]
! https://github.com/AdguardTeam/AdguardFilters/issues/27911
closermag.fr#$#html[style^="overflow: hidden;"] { overflow: visible!important; }
closermag.fr#$#body[style*="overflow: hidden;"] { overflow: visible!important; }
! https://github.com/AdguardTeam/AdguardFilters/issues/27763
mob-mobile.ru##a[href="#puzzle"]
! https://github.com/AdguardTeam/AdguardFilters/issues/27731
bing.com##header > #b_opalpers
! https://github.com/AdguardTeam/AdguardFilters/issues/27694
toster.ru###register-banner
! https://github.com/AdguardTeam/AdguardFilters/issues/27068
||montpellierhandball.com/scripts/fancybox/minified__fancybox.js
! https://github.com/AdguardTeam/AdguardFilters/issues/26451
arcadepunks.com###wpfront-notification-bar
! https://github.com/AdguardTeam/AdguardFilters/issues/27324
userstyles.org##.overlay_background
userstyles.org##.android_button_banner
userstyles.org##.android_button_button
userstyles.org##.walking
! https://github.com/AdguardTeam/AdguardFilters/issues/26047
budujemydom.pl###newsBoxLeft
! https://github.com/AdguardTeam/AdguardFilters/issues/26057
twoje-piekno.pl##.ui-pnotify
twoje-piekno.pl###ouibounce-modal
! https://github.com/AdguardTeam/AdguardFilters/issues/26066
travelist.pl###modalOverlay
travelist.pl###logregLead
! https://github.com/AdguardTeam/AdguardFilters/issues/26030
groupon.pl,groupon.com,groupon.co.uk,groupon.be,groupon.fr###subscribe_modal_container
groupon.pl,groupon.com,groupon.co.uk,groupon.be,groupon.fr###spotlight
! https://github.com/AdguardTeam/AdguardFilters/issues/25886
||cdn.playwire.com/*/embed.js$domain=tasteofcinema.com
! https://github.com/AdguardTeam/AdguardFilters/issues/27212
evosmart.it###snowflakes
! https://github.com/AdguardTeam/AdguardFilters/issues/25209
pornerbros.com##img[alt="Please Disable Adblock"]
pornerbros.com##.row > div:has(> div > img[alt="Please Disable Adblock"])
! https://github.com/AdguardTeam/AdguardFilters/issues/25784
download.komputerswiat.pl###dl_breaking_news
! nnm-club - NY balls
||assets-ssl.nnm*/forum/new_year/$domain=nnm-club-me.appspot.com|nnm-club.lib|nnm-club.tv|nnm-club.name|nnm-club.me|nnmclub.to
! https://github.com/AdguardTeam/AdguardFilters/issues/25810
deccoria.pl##.dc-layout__nav-bar
! healthline.com #25912 -- hiding all annoying popups
||cloudfront.net/_next/chunks/eea-*.js$domain=healthline.com
! https://github.com/AdguardTeam/AdguardFilters/issues/25804
cdaction.pl,pcformat.pl,poboczem.pl,pomponik.pl,smaker.pl,styl.pl,swiatkobiety.pl,tipy.interia.pl##body > .topbar
styl.pl##.mobile-topbar-container
! https://github.com/AdguardTeam/AdguardFilters/issues/25694
bettertechtips.com###wpfront-notification-bar-spacer
! https://github.com/AdguardTeam/AdguardFilters/issues/24259
! useless feedback button. Messages are not sent
support.microsoft.com##.article-container+div[content-survey]
! https://github.com/AdguardTeam/AdguardFilters/issues/25851
tvp.info##.mini-player-container .vstream__small.move
! https://github.com/AdguardTeam/AdguardFilters/issues/25885
pomponik.pl,interia.pl##.embed-video-player div[class="vjs-fixedmonitor-wrapper-fixed vjs-fixedmonitor-fixed"]
pomponik.pl,interia.pl#$#.embed-video-player div[class="vjs-fixedmonitor-wrapper-fixed vjs-fixedmonitor-fixed vjs-fixedmonitor-fixed-slide-down"] { visibility: hidden!important; }
! https://github.com/AdguardTeam/AdguardFilters/issues/25561
mangovideo.pw##.fp-brand
! https://github.com/AdguardTeam/AdguardFilters/issues/25359
||recoprofile.rediff.com/news_recommendation/news_template.html
||shopping.rediff.com/trending-now/widget
||mshop.rediff.com/trending-now/widget
! quora.com - login window on question
quora.com##div[id$="_signup_wall_wrapper"]:empty
quora.com#$#.signup_wall_prevent_scroll { overflow: auto!important; position: inherit!important; }
quora.com#$#.signup_wall_prevent_scroll div[class] { filter: none!important; }
! https://github.com/AdguardTeam/AdguardFilters/issues/24339
cooking.nytimes.com#$#html.nytc---modal-window---noScroll { overflow: visible!important; }
cooking.nytimes.com#$#body.nytc---modal-window---noScroll { overflow: visible!important; }
cooking.nytimes.com##.nytc---modal-window---isShown:not(:has(.nytc---largepicturemodal---contentBody > .nytc---x---x.nytc---largepicturemodal---xBtn[role="button"]))
! https://github.com/AdguardTeam/AdguardFilters/issues/24235
banana.by###footer
! https://github.com/AdguardTeam/AdguardFilters/issues/24413
rocketnews24.com##hr[class^="amp-wp-inline-"]
! https://github.com/AdguardTeam/AdguardFilters/issues/24141
mobile.de##.private-selling-top-bar
! https://github.com/AdguardTeam/AdguardFilters/issues/24088
myapple.pl##body > .alert-announcement#announcement
! https://github.com/AdguardTeam/AdguardFilters/issues/23735
ck101.com##.shopping-links-con
ck101.com##.topicReward5Progress
ck101.com##.thread_shopping_opener
ck101.com##.viewthread-leftfloatbox-con
ck101.com##.topicReward5Container__float
! https://github.com/AdguardTeam/AdguardFilters/issues/23808
autotraveler.ru##.floater.mt-5
! https://github.com/AdguardTeam/AdguardFilters/issues/9133
computeruniverse.ru###MegaBanner
! https://github.com/AdguardTeam/AdguardFilters/issues/23707
natemat.pl###fbinvite
! express.de - unrelated youtube video at end of article
express.de##.dumont-youtube
! https://github.com/AdguardTeam/AdguardFilters/issues/23677
this.kiji.is##.page__curatedBy
! https://github.com/AdguardTeam/AdguardFilters/issues/23377
github.com##.signup-prompt
! https://github.com/AdguardTeam/AdguardFilters/issues/23153
||wibbitz.com^$domain=pwinsider.com
pwinsider.com###ac-player-ph > #ac-player-wrapper.player-minimize
! https://github.com/AdguardTeam/AdguardFilters/issues/23342
businessinsider.com.pl###InsideTrendsHtmlBox .recomendedWidget > div.html > a[href="https://insidetrends.businessinsider.com.pl/"]
! https://github.com/AdguardTeam/AdguardFilters/issues/23230
erogazo-ngo.com###text-18.free-widget
erogazo-ngo.com###text-19.free-widget
! https://github.com/AdguardTeam/AdguardFilters/issues/23101
send.firefox.com##.fxPromo
! https://github.com/AdguardTeam/AdguardFilters/issues/23053
rp.pl##.article [ccemodule="marketing_components"]
rp.pl###sidebar-tv.-invisible .linear-tv__iframe[style$="max-width: 200px;"]
! https://github.com/AdguardTeam/AdguardFilters/issues/22970
theguardian.com##section#support-the-guardian-thrasher
! https://github.com/AdguardTeam/AdguardFilters/issues/22485
crackwatch.com##.App .announcement
! https://github.com/AdguardTeam/AdguardFilters/issues/22716
fmovie.cc##.alert.notice > p + p.hidden-xs[style*="font-weight"]
! https://github.com/AdguardTeam/AdguardFilters/issues/22590
sarayanews.com##body > div[style="position: fixed;bottom: 0;left: 0;width: 100%;z-index: 1002;"]:not([class]):not([id])
sarayanews.com#$#body > div[style="margin-bottom: 61px;height: 50px;background: #FFFD3D;border-top: 6px solid #555555;position: fixed;bottom: 0;left: 0;width: 100%;display: block;z-index: 1001;"]:not([class]):not([id]) { margin-bottom: 0!important; }
! https://github.com/AdguardTeam/AdguardFilters/issues/22615
sinemia.com###promo-banner
sinemia.com#$#body.header-social[style="padding-top: 130px;"] { padding-top: 70px!important; }
! https://github.com/AdguardTeam/AdguardFilters/issues/22160
3dnews.ru##.relatedbox
! https://github.com/AdguardTeam/AdguardFilters/issues/22158
yahoo.com#$#body.uh-banner-wide .App-Bd #mega-banner { display: none !important; }
yahoo.com#$#html.uh-banner-wide > body.uh-banner-wide { padding-top: 166px!important; }
yahoo.com#$#html:not(.Reader-open) > body.uh-banner-wide .App-Bd #mega-topbar { display: block!important; }
yahoo.com#%#(function(){var a=new Date,b=a.getTime();document.cookie="ucs=lbit="+b})();
! https://github.com/AdguardTeam/AdguardFilters/issues/22110
watchcartoononline.com###sidebar_r1
||player.anyclip.com^$domain=watchcartoononline.com
! https://github.com/AdguardTeam/AdguardFilters/issues/21851
androidpolice.com##.bigsponsor
androidpolice.com###sbar-content > li#ai_widget-6 > .ains > a[href^="https://ad.doubleclick.net/"] + a.no_ul[href="/tags/ifa2018/"]
! https://github.com/AdguardTeam/AdguardFilters/issues/20884
nownews.com#$#body[style^="overflow: hidden;"] { overflow: visible!important; padding-right: 0!important; }
nownews.com#$#div > div[data-reactroot][role="dialog"][aria-labelledby="modal-label"][style^="position: fixed; z-index:"] { display: none!important; }
! https://github.com/AdguardTeam/AdguardFilters/issues/21565
||cdn-*.playwire.com/*/embed.js$domain=gamezone.com
! https://github.com/AdguardTeam/AdguardFilters/issues/20681
porn.com##.player-cams
! https://github.com/AdguardTeam/AdguardFilters/issues/20983
||dobro.mail.ru/static/img/dobro.png
! https://github.com/AdguardTeam/AdguardFilters/issues/20915
onlinefilm-hd.com###footer div[align="justify"]
! https://github.com/AdguardTeam/AdguardFilters/issues/21340
androidpit.de###einsUndEinsBannerFixed
! https://github.com/AdguardTeam/AdguardFilters/issues/21169
||mcd-sdk.playbuzz.com/embed^$domain=appunwrapper.com
! eurogamer.de non-related article picture in article
eurogamer.de##.article > main > section > .promotion
! https://github.com/AdguardTeam/AdguardFilters/issues/20814
taraz-gov.kz##.textwidget > video[controls="autoplay"]
||taraz-gov.kz/wp-content/uploads/2018/07/Премия-для-НПО.mp4
! https://github.com/AdguardTeam/AdguardFilters/issues/19582
forbes.com##.video-placeholder.sticky-video-placeholder > fbs-video.sticky-video
! https://github.com/AdguardTeam/AdguardFilters/issues/18788
kievpravda.com##.person-of-day-sidebar
! https://github.com/AdguardTeam/AdguardFilters/issues/18710
youtube.com##.ytp-subscribe-card
! https://github.com/AdguardTeam/AdguardFilters/issues/18835
ani4u.org#$#a:hover { cursor: pointer!important; }
ani4u.org#$#body { cursor: pointer!important; }
! https://github.com/AdguardTeam/AdguardFilters/issues/18326
||buffstream.com/embed/di.js
! https://github.com/AdguardTeam/AdguardFilters/issues/18033
||wp.com/gizchina.it/wp-content/uploads/*/banner-gizdeals.png
! https://github.com/AdguardTeam/AdguardFilters/issues/17547
csdn.net##.pulllog-box
! https://github.com/AdguardTeam/AdguardFilters/issues/17584
jamf.com###learn-more-banner-container > #learn-more-banner
! tvnow.de - pause button maximizing
tvnow.de##.now-player-infobox
! https://github.com/AdguardTeam/AdguardFilters/issues/16986
||trecetv.es/images/banners/TRECE.gif
! https://github.com/AdguardTeam/AdguardFilters/issues/16740
doviz.com###nokta-player[style^="position: fixed;"]:not([style*="z-index: initial;"])
doviz.com#$#.right-column[style="padding-top: 370px;"] { padding-top: 0!important; }
! https://github.com/AdguardTeam/AdguardFilters/issues/16553
||wibbitz.com^$domain=gamerevolution.com
! https://github.com/AdguardTeam/AdguardFilters/issues/16455
||cdn.playwire.com/*/embed.js$domain=gtplanet.net
! https://github.com/AdguardTeam/AdguardFilters/issues/16123
||cdn.playwire.com/*/embed.js$domain=readlightnovel.org
! https://github.com/AdguardTeam/AdguardFilters/issues/16066
ademocut.com###sidebar > .yanmenu[-ext-has='form[action^="https://feedburner.google.com"]']
! https://github.com/AdguardTeam/AdguardFilters/issues/15815
berliner-zeitung.de##.showheroes-spot
! https://github.com/AdguardTeam/AdguardFilters/issues/15718
tofugu.com#%#document.cookie = "__smListBuilderShown=" + Date() + "; path=/";
! https://github.com/AdguardTeam/AdguardFilters/issues/13949#issuecomment-383361759
! https://github.com/AdguardTeam/AdguardFilters/issues/15106
bigpicture.ru##.sticky-bar
! https://github.com/AdguardTeam/AdguardFilters/issues/15145
foreignpolicy.com#$#body { overflow:visible!important; }
foreignpolicy.com#$#.js-takeover { display:none!important; }
! https://github.com/AdguardTeam/AdguardFilters/issues/15157
jerusalemonline.com#%#document.cookie = "sawpopup=true";
! https://github.com/AdguardTeam/AdguardFilters/issues/14918
foxnews.com##.page .alert-banner
! https://github.com/AdguardTeam/AdguardFilters/issues/14882
ivoox.com##body > .fixed-bottom-right
! https://github.com/AdguardTeam/AdguardFilters/issues/14477
techradar.com##.omaha-background
! google - information about data privacy
google.com,google.ad,google.ae,google.com.af,google.com.ag,google.com.ai,google.al,google.am,google.co.ao,google.com.ar,google.as,google.at,google.com.au,google.az,google.ba,google.com.bd,google.be,google.bf,google.bg,google.com.bh,google.bi,google.bj,google.com.bn,google.com.bo,google.com.br,google.bs,google.bt,google.co.bw,google.by,google.com.bz,google.ca,google.cd,google.cf,google.cg,google.ch,google.ci,google.co.ck,google.cl,google.cm,google.cn,google.com.co,google.co.cr,google.com.cu,google.cv,google.com.cy,google.cz,google.de,google.dj,google.dk,google.dm,google.com.do,google.dz,google.com.ec,google.ee,google.com.eg,google.es,google.com.et,google.fi,google.com.fj,google.fm,google.fr,google.ga,google.ge,google.gg,google.com.gh,google.com.gi,google.gl,google.gm,google.gp,google.gr,google.com.gt,google.gy,google.com.hk,google.hn,google.hr,google.ht,google.hu,google.co.id,google.ie,google.co.il,google.im,google.co.in,google.iq,google.is,google.it,google.je,google.com.jm,google.jo,google.co.jp,google.co.ke,google.com.kh,google.ki,google.kg,google.co.kr,google.com.kw,google.kz,google.la,google.com.lb,google.li,google.lk,google.co.ls,google.lt,google.lu,google.lv,google.com.ly,google.co.ma,google.md,google.me,google.mg,google.mk,google.ml,google.com.mm,google.mn,google.ms,google.com.mt,google.mu,google.mv,google.mw,google.com.mx,google.com.my,google.co.mz,google.com.na,google.com.nf,google.com.ng,google.com.ni,google.ne,google.nl,google.no,google.com.np,google.nr,google.nu,google.co.nz,google.com.om,google.com.pa,google.com.pe,google.com.pg,google.com.ph,google.com.pk,google.pl,google.pn,google.com.pr,google.ps,google.pt,google.com.py,google.com.qa,google.ro,google.ru,google.rw,google.com.sa,google.com.sb,google.sc,google.se,google.com.sg,google.sh,google.si,google.sk,google.com.sl,google.sn,google.so,google.sm,google.sr,google.st,google.com.sv,google.td,google.tg,google.co.th,google.com.tj,google.tk,google.tl,google.tm,google.tn,google.to,google.com.tr,google.tt,google.com.tw,google.co.tz,google.com.ua,google.co.ug,google.co.uk,google.com.uy,google.co.uz,google.com.vc,google.co.ve,google.vg,google.co.vi,google.com.vn,google.vu,google.ws,google.rs,google.co.za,google.co.zm,google.co.zw,google.cat###cnso
! https://github.com/AdguardTeam/AdguardFilters/issues/13784
guzellikbulvari.com##.subscribe
! https://github.com/AdguardTeam/AdguardFilters/issues/14650
||javhiv.net/statics/defaultv2/js/debug1.js
! https://github.com/AdguardTeam/AdguardFilters/issues/14293
kresy.pl##.ls-popup [id^="layerslider_"]
kresy.pl#$#.hidewhennotclicked { display: block!important; }
kresy.pl#$#.showwhennotclicked { display: none!important; }
! https://github.com/AdguardTeam/AdguardFilters/issues/13713
journo.com.tr##.herald-single-sticky
! https://github.com/AdguardTeam/AdguardFilters/issues/13488
semrush.com#$##sem-user-limit-popup-container { display:none!important; }
semrush.com#$#body { overflow:visible!important; }
! https://github.com/AdguardTeam/AdguardFilters/issues/14341
kino-hd1080.ru##.warning
! https://github.com/AdguardTeam/AdguardFilters/issues/14248
||medicalnewstoday.com/structure/framework/main/article/mobile_newsletter_modal.php
! https://github.com/AdguardTeam/AdguardFilters/issues/13322
5lb.ru##.banner
! https://github.com/AdguardTeam/AdguardFilters/issues/13305
crazymailing.com##.alert_background
crazymailing.com###alert_plugin
crazymailing.com##.ext-info-bar
crazymailing.com#$#body.download-pl { padding-top: 0!important; }
! https://github.com/AdguardTeam/AdguardFilters/issues/13261
||pdj.cc^$domain=promodj.com
! https://github.com/AdguardTeam/AdguardFilters/issues/12824
||widget.crowdynews.com^$domain=gmanetwork.com
! https://github.com/AdguardTeam/AdguardFilters/issues/12831
wikitribune.com##.wt-support-us
!
! https://github.com/AdguardTeam/AdguardFilters/issues/11980
providr.com###mc_embed_signup
! https://github.com/AdguardTeam/AdguardFilters/issues/11757
mercurynews.com##.sign-up-follow
! auto.ru
m.auto.ru##.index-evaluation-banner
m.auto.ru##.index-autocode-banner
m.auto.ru##.ListingPromoParts__wrapper
! https://github.com/AdguardTeam/AdguardFilters/issues/11496
dnepr.info##.btn-ads-fix
! https://github.com/AdguardTeam/AdguardFilters/issues/11245
urlaubstracker.de###wysija-2
urlaubstracker.de##.optin-monster-saas-overlay
! disables need for registration after 2 views of an article
ibc.org#%#document.cookie = "AnonUserCookie = " + Math.random() + ";path=/";
! https://github.com/AdguardTeam/AdguardFilters/issues/10911
100percentfedup.com###enhancedtextwidget-6
! https://github.com/AdguardTeam/AdguardFilters/issues/8975
t-online.de###TbNewsWrap
! https://github.com/AdguardTeam/AdguardFilters/issues/10700
10news.com##.module--email-widget
! https://github.com/AdguardTeam/AdguardFilters/issues/10728
pressgazette.co.uk##div[id^="itro_"]
! https://github.com/AdguardTeam/AdguardFilters/issues/10526
neuhandeln.de##.entry-content > p > em
neuhandeln.de##.mh-sidebar > #text-8
! https://github.com/AdguardTeam/AdguardFilters/issues/10501
dbna.de##.redyellow:not(.textblock)
! https://github.com/AdguardTeam/AdguardFilters/issues/10613
||d3otfkap419ijo.cloudfront.net/*/lib-components-newsletter-modal.js
! https://github.com/AdguardTeam/AdguardFilters/issues/10523
uproxx.com##.uproxx-retention-unit > iframe
! https://github.com/AdguardTeam/AdguardFilters/issues/10108
||designmodo.com/wp-content/themes/designmodov2.1/js/banner-slides.js
! https://github.com/AdguardTeam/AdguardFilters/issues/9988
foerderland.de###footerFlyout
! https://github.com/AdguardTeam/AdguardFilters/issues/9997
1movies.to###subsribe_news
! https://github.com/AdguardTeam/AdguardFilters/issues/9761
blickamabend.ch##.rightElement > .widget_maxiteaser + h3
blickamabend.ch##.rightElement > .widget_maxiteaser + h3 + div[style]
! https://github.com/AdguardTeam/AdguardFilters/issues/9590
instela.com##.stripe-warning
! https://github.com/AdguardTeam/AdguardFilters/issues/9546
videonette.com###konumuz a[href^="https://www.facebook.com"]
! https://github.com/AdguardTeam/AdguardFilters/issues/9420
investingnote.com##.blocker
! https://github.com/AdguardTeam/AdguardFilters/issues/9409
watchhax.me#$#body { overflow:visible!important; }
watchhax.me#$#cloudflare-app[data-goal="signup"] { display:none!important; }
! https://github.com/AdguardTeam/AdguardFilters/issues/9388
majorgeeks.com###mc_embed_signup
! https://github.com/AdguardTeam/AdguardFilters/issues/9303
m.heise.de##.btn-toolbar > .whatsbroadcast-group
! http://www.pi-news.net/2018/01/berlin-islamischer-hintergrund-bei-messer-attentat-vermutet/
pi-news.net##.widget_wysija
! https://github.com/AdguardTeam/AdguardFilters/issues/9172
gannikus.com###sidebar > #text-8
! https://github.com/AdguardTeam/AdguardFilters/issues/9140
megahd.cc##.wp_subscribe
megahd.cc##.lado1 > .sidebar5
megahd.cc##.lado1 > .sub_title:contains(Subscribe)
! https://github.com/AdguardTeam/AdguardFilters/issues/9117
pagalguy.com##.floater-bottom > .pg-card
! https://github.com/AdguardTeam/AdguardFilters/issues/8975
t-online.de###TpromoO
! https://github.com/AdguardTeam/AdguardFilters/issues/8423
gmx.net###topper
! https://github.com/AdguardTeam/AdguardFilters/issues/8738
megatrack.top###sidebar1-wrap > div.section:has(> div.secondaryContent > h3:contains(Радио Online))
||radioroks.ua^$domain=megatrack.top
! https://github.com/AdguardTeam/AdguardFilters/issues/8826
@@||hentai2read.com/wp-content/themes/Hentai2R/assets/js/showAds.js
! https://github.com/AdguardTeam/AdguardFilters/issues/8817
revolutions.pw###timer
revolutions.pw#$##example {display:block!important;}
! https://github.com/AdguardTeam/AdguardFilters/issues/8790
inpixme.pw#$##example {display:block!important;}
inpixme.pw###timer
! https://github.com/AdguardTeam/AdguardFilters/issues/8761
esslinger-zeitung.de##.nfy-ar-detail > footer > .nachrichtendienst-outer
esslinger-zeitung.de##.nfy-searea > .rf-servicebox-html_content
! https://github.com/AdguardTeam/AdguardFilters/issues/8649
phys.org##.nwletter-box
! https://github.com/AdguardTeam/AdguardFilters/issues/8549
mercedes-benz.de##.nextstepnavigation__base > .target + .parbase.nextstepnavigationelement.section.base
! https://github.com/AdguardTeam/AdguardFilters/issues/8390
newtab.club##.section-icon-tabs
! org.rambler.ru - browser banner
org.rambler.ru##.b-chrome_widget
! https://forum.adguard.com/index.php?threads/http-www-webtekno-com.27339/
webtekno.com##.content-bottom
! https://forum.adguard.com/index.php?threads/resolved-uploadrocket-net.27215/
uploadrocket.net##.file_slot > tbody > tr #ID_freeorpremium
! https://github.com/AdguardTeam/AdguardFilters/issues/7740
pri.org##aside.always-under.donate
! https://forum.adguard.com/index.php?threads/27125/
wikipedia.org##.cnotice
! https://forum.adguard.com/index.php?threads/https-www-emaze-com.26992/
emaze.com#%#var _st = window.setTimeout; window.setTimeout = function(a, b) { if(!/loginPopup.show/.test(a)){ _st(a,b);}};
! https://github.com/AdguardTeam/AdguardFilters/issues/23739
vk.com##.feed_friends_recomm
! https://github.com/AdguardTeam/AdguardFilters/issues/7747
vk.com##aside[aria-label="Актуальные новости"]
! https://forum.adguard.com/index.php?threads/https-www-cinemaximum-com-tr.26866/
cinemaximum.com.tr###login-wrapper > .user-reminder.user-not-login-reminder.active
! https://forum.adguard.com/index.php?threads/26738/
ukrainefootball.net###kinoafishaslider
! https://github.com/AdguardTeam/AdguardFilters/issues/7394
ixbt.video#$#body { background: none!important; }
ixbt.video##.clickable_zone
! https://github.com/AdguardTeam/AdguardFilters/issues/7303
handelsblatt.com###hb-message-alert-bookmark
! Browser extension suggestion
||ext-stat.ru^$third-party
||mystatext.ru^$third-party
! https://forum.adguard.com/index.php?threads/26125/
last.fm##.profile-banner
! Edge browser suggestion
xbox.com,skype.com##.f-information.epb-container
! screenshots.firefox.com - FF suggestion
screenshots.firefox.com##.alt-notification
! http://forum.ru-board.com/topic.cgi?forum=2&topic=5372&start=520#14
tut.by##div[class^="l-outer impl-variant-"]
! https://forum.adguard.com/index.php?threads/25805/
||srviral.com^$domain=alrincon.com
! https://forum.adguard.com/index.php?threads/25713/
||donanimhaber.com/infobox/
||bolumsonucanavari.com/infobox/
! heraldsun.com.au - note about ads
heraldsun.com.au##.content-bottom
! https://forum.adguard.com/index.php?threads/25618/
whispersinthecorridors.com##.media > .space
! https://forum.adguard.com/index.php?threads/http-www-javhiv-com-nsfw.25509/
javhiv.com##.block-body > .block.announcement
! https://forum.adguard.com/index.php?threads/25412/
answers.yahoo.com##.ginsuAd
! https://forum.adguard.com/index.php?threads/25282/
youtube.com#$##ticker.ytd-masthead { display: none!important; }
! https://forum.adguard.com/index.php?threads/http-topxeber-az.25317/
topxeber.az##.widget.recommend-box
! https://github.com/AdguardTeam/AdguardFilters/issues/6855
amalgama-lab.com###quality
! https://forum.adguard.com/index.php?threads/aydinlik-com-tr.25153/
aydinlik.com.tr##.cn-home > .cat-row[style="margin-top: 3px"]
! https://github.com/AdguardTeam/AdguardFilters/issues/6825
||macerkopf.de/wp-content/plugins/dreamgrow-scroll-triggered-box/js/script.js
! https://forum.adguard.com/index.php?threads/https-www-viyaza-com.25096/
viyaza.com###check-also-box
! https://forum.adguard.com/index.php?threads/http-thefreedictionary-com.25069/
thefreedictionary.com###OccupSlider
! https://github.com/AdguardTeam/AdguardFilters/issues/6720
allmusic.com###ctoolbar
! https://github.com/AdguardTeam/AdguardFilters/issues/6579
||dailymotion.com/embed/video/$domain=adshorte.com
! thequestion.ru - articles banner at the top
thequestion.ru##a.informer
! https://github.com/AdguardTeam/AdguardFilters/issues/6409
haaretz.com##.footer-toolbar.float
! https://forum.adguard.com/index.php?threads/24112/
iz.ru#%#(function() { try { if ("undefined" != typeof localStorage) { localStorage.setItem("player.live.current.play", "false") } } catch (ex) {} })();
iz.ru#%#(function() { try { if ("undefined" != typeof localStorage) { localStorage.setItem("player.live.current.mute", "false") } } catch (ex) {} })();
iz.ru#%#(function() { try { if ("undefined" != typeof localStorage) { localStorage.setItem("player.live.current.volume", "0") } } catch (ex) {} })();
iz.ru#%#AG_onLoad(function() { setTimeout(function() { (function() { try { if ("undefined" != typeof localStorage) { localStorage.setItem("player.live.current.play", "false") } } catch (ex) {} })(); }, 1500); });
! https://github.com/AdguardTeam/AdguardFilters/issues/6305
vizer.tv##body > .vizerNewBox.vizerNoticia
! https://github.com/AdguardTeam/AdguardFilters/issues/21646
rgatorporn.com##.banner
! https://github.com/AdguardTeam/AdguardFilters/issues/21572
mgts.ru##.pop_up_through
! https://github.com/AdguardTeam/AdguardFilters/issues/6340
softonic.com##.modal.overlay-alternative-apps
! https://forum.adguard.com/index.php?threads/24059/
dailytelegraph.com.au###ad-blocker-banner
! https://github.com/AdguardTeam/AdguardFilters/issues/24158
! https://github.com/AdguardTeam/AdguardFilters/issues/6211
aftonbladet.se##body.abTouch #header.abThemeBgLight > div[class="_3lW80"] > .abThemeBgLight
! wikipedia.org - requests for donations
wikipedia.org###frb-nag
wikipedia.org###frb-inline
! https://github.com/AdguardTeam/AdguardFilters/issues/5998
kitguru.net###check-also-box
! https://github.com/AdguardTeam/AdguardFilters/issues/5992
dn.se##.navigation__top-container
! https://github.com/AdguardTeam/AdguardFilters/issues/6011
mobile.twitter.com##header[role="banner"] + ._2FU3NGw4 > ._1363jyKz.thXr_Z-z
! mozilla.org - was this page helpful widget
developer.mozilla.org###helpful-survey
! https://forum.adguard.com/index.php?threads/www-topsante-com.23871/
topsante.com###toaster-abo
! https://forum.adguard.com/index.php?threads/www-reponsesphoto-fr.23807/
reponsesphoto.fr###toaster-abo
! https://github.com/AdguardTeam/AdguardFilters/issues/5877
baliperek.com#%#AG_onLoad(function() { window.bizpanda = {}; });
! https://forum.adguard.com/index.php?threads/23708/
gostream.is##.alert-info
! https://forum.adguard.com/index.php?threads/23381/
cyberforum.ru##.page > div[style][align="left"] > div[id^="edit"] > div[style^="margin: 3px 0px 0px"][-ext-has='> table[class][align="center"] > tbody > tr > td > div.smallfont > span.bigusername:contains(MoreAnswers)']
cyberforum.ru##.page > div[style][align="left"] > div[id^="edit"] > div[style^="margin: 3px 0px 0px"][-ext-has='> table[class][align="center"] > tbody > tr > td > div.smallfont > span.bigusername:contains(Similar)']
! https://forum.adguard.com/index.php?threads/23364/
! Yandex bookmark widget
polit.info###yandex_save
nation-news.ru###yandex_save
politexpert.net##.yandex_button
riafan.ru###yandex_widget_one
rueconomics.ru###yandex_save
! https://github.com/AdguardTeam/AdguardFilters/issues/21883
vidz24.com##.partnier-top-nav
vidz24.com##.right-advertising
! https://github.com/AdguardTeam/AdguardFilters/issues/21880
pornhd6k.net###menu-item-44372
pornhd6k.net###menu-item-34816
pornhd6k.net###menu-item-34347
pornhd6k.net##.menu-item-34066
pornhd6k.net##.menu-item-35602
! https://github.com/AdguardTeam/AdguardFilters/issues/21882
intui.travel##.fortyeight-hours-modal-form-overlay
intui.travel##.fortyeight-hours-modal-form
! https://github.com/AdguardTeam/AdguardFilters/issues/21881
xtapes.to##.menu-item-42861
xtapes.to##.menu-item-2370
! https://github.com/AdguardTeam/AdguardFilters/issues/5430
blick.ch###article-flyin-container
! https://forum.adguard.com/index.php?threads/21288/
kinopoisk.ru##.film-thin-teaser
! https://forum.adguard.com/index.php?threads/22946/
! https://github.com/AdguardTeam/AdguardFilters/issues/6125
||cdn.playwire.com/*/embed.js$domain=filehippo.com
||view.vzaar.com/*/player$domain=filehippo.com
! community.spiceworks.com - proposal for registration
community.spiceworks.com##.join-promotion
! https://forum.adguard.com/index.php?threads/22911/
sueddeutsche.de##.end-of-article-joboffers
! https://forum.adguard.com/index.php?threads/22483/
last.fm##.chartlist-break
last.fm##.lazy-recs-bar-full-width-wrapper
last.fm##.join-cta.link-block
last.fm##.user-dashboard-banner.link-block
! https://github.com/AdguardTeam/AdguardFilters/issues/5312
morgenweb.de##.nfy-mobile-sticky-buttons
! outline.com - browser extension banner
outline.com##.outline-toolbar
! avinfo.co - browser extension banner
||avinfo.co/i/chromavinfo.jpg
! https://github.com/AdguardTeam/AdguardFilters/issues/5132
snipz.de##.wpb_wrapper > div.sidebar > div.widget_text[id^="text-"]
! https://github.com/AdguardTeam/AdguardFilters/issues/5110
techtarget.com###download-offer
! https://forum.adguard.com/index.php?threads/22065/
tripadvisor.ca,tripadvisor.co,tripadvisor.co.id,tripadvisor.co.uk,tripadvisor.com,tripadvisor.com.au,tripadvisor.com.br,tripadvisor.com.gr,tripadvisor.com.mx,tripadvisor.com.my,tripadvisor.com.sg,tripadvisor.com.tr,tripadvisor.com.tw,tripadvisor.es,tripadvisor.fr,tripadvisor.ie,tripadvisor.in,tripadvisor.it,tripadvisor.jp,tripadvisor.net,tripadvisor.nl,tripadvisor.se,tripadvisor.be##.ppr_priv_brand_consistent_header
! duckduckgo.com - partner link
duckduckgo.com###powered_by.results--powered
! rbc.ua - messenger icons
rbc.ua##footer > a[id$="-messanger-link"]
! lostfilm.info - удаление брендированного фона(не реклама), отступа сверху
lostfilm.info##div[id^="heraplper"] > a > div[style="width:100%;height:100px;cursor:pointer"]
lostfilm.info#$#body { background: #000000!important; }
||lostfilm.info/css*/b/
! baibako.tv - удаление брендированного фона(не реклама), отступа сверху
baibako.tv##.topserial > a
||baibako.tv/bg/
! forums.redflagdeals.com - proposal for registration
forums.redflagdeals.com##.message.guest_intro
! stackoverflow.com - proposal for registration
stackoverflow.com###herobox
! https://forum.adguard.com/index.php?threads/www-ina-fr.21367/
ina.fr###habillage
ina.fr##.skinny--click
!
! facebook.com
! "possible friends"
facebook.com##._5pcr.fbUserPost._4nef._5pcr
! "People you may know" at https://www.facebook.com/profile.php
facebook.com###pagelet_pymk_timeline
! "People you may know" at https://x.facebook.com/profile.php / https://mobile.facebook.com/profile.php / https://touch.facebook.com/profile.php https://m.facebook.com/profile.php
facebook.com##div._10c_ > div[class="_3n40 _2jl2"][id="u_0_1s"]
!
! 44.ua - notification about browser extension
44.ua##.exp-line
! download.cnet.com - annoying useless videoplayer
download.cnet.com#%#AG_onLoad(function() { setTimeout(function() { document.getElementById('uvp-video').innerHTML = ''; }, 300); });
download.cnet.com#$##uvp-video { display: none!important; }
! https://forum.adguard.com/index.php?threads/20856/
||otvet.mail.ru/sounds/notify.mp3
! ipress.ua - annoying animated banner
ipress.ua##.swiper-container
! afisha.ru - annoying animated banner, redirect to broadcast page
||afisha.ru/js/banner_glitch/BannerGlitch.js
||afisha.ru/noindex/IsShowLive.js
! dailypost.co.uk - floating player
dailypost.co.uk##.float-and-park
! https://forum.adguard.com/index.php?threads/20225/
simplest-image-hosting.net##div#extensionBar
! medium.com - register popup (Never miss a story from ...)
##.screenContent > main[role="main"] ~ .js-stickyFooter.u-bottom0.u-sizeFullWidth
! livejournal.com - suggestion bar
livejournal.com##.b-discoverytimes-wrapper
! https://forum.adguard.com/index.php?threads/19501/
royalcams.com,100tipcams.com,adultcams.me,adultchat2100.com,alphafreecams.com,bimbolive.com,bongacam.net,bongacam.org,bongacams-chat.ru,bongacams.com,bongacams.eu,bongacams2.com,cammbi.com,dcmoz.net,prostocams.com,r2games.com,redlightarea.com,smutcam.com###dmca_security
! canlive.net - tag cloud and remains of social buttons
canlive.net##.container > div.row > div[class="col-md-4 margin-top-20"]
! msdn.microsoft.com - "is this page helpful?"
msdn.microsoft.com###standardRating
! https://forum.adguard.com/index.php?threads/13955/
mimikama.at##.col-8.main-content > div[style$="width: 100%; text-align: center; background-color: #eaeaea"]
! https://forum.adguard.com/index.php?threads/18431/
overclockers.ru##.item.hostkey
! systemrequirementslab.com - annoying third-party player
||streamspread.com^$domain=systemrequirementslab.com
! https://forum.adguard.com/index.php?threads/16639/
4pda.ru###go_1
! https://forum.adguard.com/index.php?threads/17699/
wikipedia.org##.mw-dismissable-notice
! https://forum.adguard.com/index.php?threads/17930/
yurtgazetesi.com.tr##.hbr-ilgililer
! https://forum.adguard.com/index.php?threads/17569/
subs.ro###subtitles-page > .items > li:empty
! https://forum.adguard.com/index.php?threads/17032/
3dnews.ru###youtube-chunk-wrapper
! https://forum.adguard.com/index.php?threads/16768/
ibtimes.co.uk##figure.fullVideo > div.relative.stuck
! https://github.com/AdguardTeam/AdguardFilters/issues/3576
addons.mozilla.org###site-welcome.site-balloon
! https://forum.adguard.com/index.php?threads/16367/
mavikocaeli.com.tr##.hbr-ilgililer
! https://forum.adguard.com/index.php?threads/16183
gamenguide.com##.at_nwletters
! https://forum.adguard.com/index.php?threads/16191/
overclockers.com###sidebar > div:not(.reference)
! https://forum.adguard.com/index.php?threads/16247/
siliconera.com##.show-ads div.t-footer-wrapper
! orlandosentinel.com - floating bar
orlandosentinel.com##.trb_bnn
! Reg notification
||anidub-online.ru/templates/Anidub_online/img/nya.png
||online.anidub.com/templates/Anidub_online/img/nya.png
! uploadocean.com - annoying social buttons
uploadocean.com##.down1_holder > div[style$="padding-top:10px; float:left; width:100%;"]
! https://forum.adguard.com/index.php?threads/14699/
||mir-avto-moto.ru^$domain=spec-komp.com
! cnet.com - popup player with autoplay
cnet.com#%#AG_onLoad(function(){ AG_removeElementBySelector('div.featuredVideo'); });
! https://forum.adguard.com/index.php?threads/14586/
thenextweb.com##.ica-wrapper
! serial.kz - предложение добавить сайт в закладки
serial.kz##.browser-fav
! http://forum.ru-board.com/topic.cgi?forum=2&topic=5372&start=160#6
superjob.ru##.topNotification
! epochtimes.de - annoying social button
epochtimes.de###fbPopupBG
||epochtimes.de/assets/themes/eptde16/popup/fb-like-epochtimes.de.html
! https://forum.adguard.com/index.php?threads/14238/
comss.info##body > div.top > a > img
comss.info##div.toplogo > span[style^="position:absolute; margin-left:"]
comss.ru##div[style="margin-top:25px;width:300px;"] > a > img
comss.ru##img[style^="width:500px;height:30px;"]
comss.ru##td[style="width:180px"] > div.block
comss.ru##td[style="width:260px"] > div.av > a > img[width="185"][height="250"]
! news.com.au - ads notification
news.com.au##.footer-statements
! bleacherreport.com - accepting the rules notification
bleacherreport.com###feedback-module
!
otzyv.ru##div[align="center"] > .aviasales
vchaspik.ua##div[id="conteiner"][style="height: 410px;"]
weekendnotes.com##div[style*="330px;"][style*="60px;"]
! https://forum.adguard.com/index.php?threads/13621/
pcworld.com##.howto-video
pcworld.com#%#setInterval(function() { var el = document.querySelector('.howto-video video'); if (el) { el.pause(); el.src = ''; }}, 100);
! gismeteo.ru - полоса с предложением установить расширение
gismeteo.ru###soft-promo
! https://forum.adguard.com/index.php?threads/13087/
ctc.ru##.widget.special-block[data-trackable]
||mts.ctc.ru/?nowrap=
! kinokong.net - полоса с популярными фильмами
kinokong.net###hotnewsline
! https://forum.adguard.com/index.php?threads/13001/
grammarly.com#%#(function() { try { if ("undefined" != typeof localStorage) { localStorage.setItem("ch:overlay.closed.time", "5000000000000") } } catch (ex) {} })();
! zaycev.fm - предложение установить виджет
zaycev.fm###__notifyBar
! focus.ua - плавающее окно с соц. ссылками
focus.ua###at4-follow
! disqus.com - vote for third-party sites notification
disqus.com##div[data-role="motd-alert"]
! online-life.cc - предложеие зарегистрироваться
online-life.cc##div[class="pull-left"][style="margin-left: 5px;"]
! Полоса со способами обхода блокировок
online-life.cc###top-line
kinogo.club##body > div[style^="position: fixed; bottom: 0px; width: 100%; z-index: 1000; height: 41px"]
! ikinohd.com - панель добавления в избранное
ikinohd.com##.browser-fav
! klerk.ru - блок объявлений
klerk.ru##.lenta-classified
! https://forum.adguard.com/index.php?threads/11429/
torrent-kutusu.blogspot.com##div[class][id="drag-div"]
! ivi.ru - notification about traffic optimization on some configurations
ivi.ru###traffic-optimizer-warning
! xeberle.com - big "Powered By" block
xeberle.com##.base-box.mom_box_sc.mom_callout
! https://github.com/AdguardTeam/AdguardFilters/issues/2333
glavpost.com##.useful-slider
! https://github.com/AdguardTeam/AdguardFilters/issues/2282
bigbangnews.com##.follow-fb-fixed
! mimimi.tv - social locker
mimimi.tv#%#AG_onLoad(function() { window.bizpanda = {}; });
! mob.org.ru - youtube placeholder in the top of the site
||am.cdnmob.org/_/img/youtube-bg-filler.png
! arcor.de - survey
arcor.de###fmsurvey
! pastelink.net - whitespace on the right side
pastelink.net###display-sidebar
! savepic.ru - блок новостей
savepic.ru##.news-feed
! inopressa.ru - пустой блок снизу
inopressa.ru##.alignleft > table[width="715"][border="0"][bgcolor="#DDDDDD"]
! lostfilmonline.ru - пустой блок сверху
lostfilmonline.ru###rt-drawer
lostfilmonline.ru##a[href^="/browse.php?cat="][alt][title] > div[style]
! ads widget and music
||kiwi6.com^$domain=zuketapaajabhisa.blogspot.com|zuketapaajabhisa.blogspot.com.tr|zuketapaajabhisa.blogspot.ru
||whoaremyfriends.net^$domain=zuketapaajabhisa.blogspot.com|zuketapaajabhisa.blogspot.com.tr|zuketapaajabhisa.blogspot.ru
!
! http://forum.adguard.com/showthread.php?6449
absurdopedia.net###p-friends
! http://forum.adguard.com/showthread.php?6417
sourceforge.net###downloading > #mirror
! http://forum.adguard.com/showthread.php?3903
vuku.tv##div[class^="bookmarks_div"]
! kino-dom.tv - third-side player
g-tv.ru/videomore_gtv.php?video_id=*&auto_play=1$domain=kino-dom.tv
! 24tv.ua - остатки блока "Новости партнёров"
24tv.ua##.programs_wrap
! translate.google.ru/com - Improve Google Translate
translate.google.com,translate.google.com.ua,translate.google.ru###gt-promo-lr
! sports.ru - блок "За кого вы болеете?", "Зарегистрируйтесь" и пр.
sports.ru##.c-favorite-team
! sports.ru - всплывающее сообщение
sports.ru##.js_favteam > .tooltips
! fishki.net - блок внизу "с самым интересным на сайте"
fishki.net##.related-posts.related-posts-bottom.clearfix
! http://forum.adguard.com/showthread.php?5500
||vesti.ru/4sport.html
! yadi.sk - http://forum.adguard.com/showthread.php?5483
yadi.sk##.content-poster-public__poster
! torrentleech.org - requests for donations
torrentleech.org##a[href="/user/donate"]
!
! START: YouTube annoyances
! YouTube promo annotations
youtube.com##.video-annotations
youtube.com##.annotation.iv-promo
youtube.com##.annotation.iv-branding
youtube.com##.iv-promo-video
youtube.com##.ytp-cards-teaser
! YouTube video annotations
youtube.com##.ytp-ce-element
youtube.com##.ytp-pause-overlay
! https://github.com/AdguardTeam/AdguardFilters/issues/28271#issuecomment-454325128
youtube.com##.ytp-paid-content-overlay
! https://forum.adguard.com/index.php?threads/11119/
youtube.com###yt-lang-alert-container
! END: YouTube annoyances
!
!
! START: Yandex
!
! Yandex main page
! Banner near the search string
yandex.by,yandex.com,yandex.com.tr,yandex.fr,yandex.kz,yandex.ru,yandex.ua,~afisha.yandex.by,~afisha.yandex.kz,~afisha.yandex.ru,~afisha.yandex.ua,~avia.yandex.by,~avia.yandex.kz,~avia.yandex.ru,~avia.yandex.ua,~bilet.yandex.com.tr,~flights.yandex.com,~disk.yandex.by,~disk.yandex.com,~disk.yandex.com.tr,~disk.yandex.fr,~disk.yandex.kz,~disk.yandex.ru,~disk.yandex.ua,~mail.yandex.by,~mail.yandex.kz,~mail.yandex.ru,~mail.yandex.ua,~mail.yandex.com,~mail.yandex.com.tr,~money.yandex.ru,~music.yandex.ru,~music.yandex.ua,~music.yandex.by,~music.yandex.kz,~news.yandex.by,~news.yandex.com,~news.yandex.fr,~news.yandex.kz,~news.yandex.ru,~news.yandex.ua,~rabota.yandex.by,~rabota.yandex.kz,~rabota.yandex.ru,~rabota.yandex.ua,~radio.yandex.by,~radio.yandex.kz,~radio.yandex.ru,~radio.yandex.ua,~realty.yandex.by,~realty.yandex.kz,~realty.yandex.ru,~realty.yandex.ua,~tv.yandex.by,~tv.yandex.kz,~tv.yandex.ru,~tv.yandex.ua,~yadi.sk,~zen.yandex.by,~zen.yandex.com,~zen.yandex.kz,~zen.yandex.ru,~zen.yandex.ua,~docviewer.yandex.by,~docviewer.yandex.com,~docviewer.yandex.com.tr,~docviewer.yandex.fr,~docviewer.yandex.kz,~docviewer.yandex.ru,~docviewer.yandex.ua,~rasp.yandex.by,~rasp.yandex.kz,~rasp.yandex.ru,~rasp.yandex.ua##.dist-popup
yandex.by,yandex.com,yandex.com.tr,yandex.fr,yandex.kz,yandex.ru,yandex.ua,~afisha.yandex.by,~afisha.yandex.kz,~afisha.yandex.ru,~afisha.yandex.ua,~avia.yandex.by,~avia.yandex.kz,~avia.yandex.ru,~avia.yandex.ua,~bilet.yandex.com.tr,~flights.yandex.com,~disk.yandex.by,~disk.yandex.com,~disk.yandex.com.tr,~disk.yandex.fr,~disk.yandex.kz,~disk.yandex.ru,~disk.yandex.ua,~mail.yandex.by,~mail.yandex.kz,~mail.yandex.ru,~mail.yandex.ua,~mail.yandex.com,~mail.yandex.com.tr,~money.yandex.ru,~music.yandex.ru,~music.yandex.ua,~music.yandex.by,~music.yandex.kz,~news.yandex.by,~news.yandex.com,~news.yandex.fr,~news.yandex.kz,~news.yandex.ru,~news.yandex.ua,~rabota.yandex.by,~rabota.yandex.kz,~rabota.yandex.ru,~rabota.yandex.ua,~radio.yandex.by,~radio.yandex.kz,~radio.yandex.ru,~radio.yandex.ua,~realty.yandex.by,~realty.yandex.kz,~realty.yandex.ru,~realty.yandex.ua,~tv.yandex.by,~tv.yandex.kz,~tv.yandex.ru,~tv.yandex.ua,~yadi.sk,~zen.yandex.by,~zen.yandex.com,~zen.yandex.kz,~zen.yandex.ru,~zen.yandex.ua,~docviewer.yandex.by,~docviewer.yandex.com,~docviewer.yandex.com.tr,~docviewer.yandex.fr,~docviewer.yandex.kz,~docviewer.yandex.ru,~docviewer.yandex.ua,~rasp.yandex.by,~rasp.yandex.kz,~rasp.yandex.ru,~rasp.yandex.ua##.widgets__col_td_2
! Default search engine and start page(popup)
yandex.by,yandex.com,yandex.com.tr,yandex.fr,yandex.kz,yandex.ru,yandex.ua,~afisha.yandex.by,~afisha.yandex.kz,~afisha.yandex.ru,~afisha.yandex.ua,~avia.yandex.by,~avia.yandex.kz,~avia.yandex.ru,~avia.yandex.ua,~bilet.yandex.com.tr,~flights.yandex.com,~disk.yandex.by,~disk.yandex.com,~disk.yandex.com.tr,~disk.yandex.fr,~disk.yandex.kz,~disk.yandex.ru,~disk.yandex.ua,~mail.yandex.by,~mail.yandex.kz,~mail.yandex.ru,~mail.yandex.ua,~mail.yandex.com,~mail.yandex.com.tr,~money.yandex.ru,~music.yandex.ru,~music.yandex.ua,~music.yandex.by,~music.yandex.kz,~news.yandex.by,~news.yandex.com,~news.yandex.fr,~news.yandex.kz,~news.yandex.ru,~news.yandex.ua,~rabota.yandex.by,~rabota.yandex.kz,~rabota.yandex.ru,~rabota.yandex.ua,~radio.yandex.by,~radio.yandex.kz,~radio.yandex.ru,~radio.yandex.ua,~realty.yandex.by,~realty.yandex.kz,~realty.yandex.ru,~realty.yandex.ua,~tv.yandex.by,~tv.yandex.kz,~tv.yandex.ru,~tv.yandex.ua,~yadi.sk,~zen.yandex.by,~zen.yandex.com,~zen.yandex.kz,~zen.yandex.ru,~zen.yandex.ua,~docviewer.yandex.by,~docviewer.yandex.com,~docviewer.yandex.com.tr,~docviewer.yandex.fr,~docviewer.yandex.kz,~docviewer.yandex.ru,~docviewer.yandex.ua,~rasp.yandex.by,~rasp.yandex.kz,~rasp.yandex.ru,~rasp.yandex.ua##.widget_id_teaser
! YB under the search string
yandex.by,yandex.com,yandex.com.tr,yandex.fr,yandex.kz,yandex.ru,yandex.ua,~afisha.yandex.by,~afisha.yandex.kz,~afisha.yandex.ru,~afisha.yandex.ua,~avia.yandex.by,~avia.yandex.kz,~avia.yandex.ru,~avia.yandex.ua,~bilet.yandex.com.tr,~flights.yandex.com,~disk.yandex.by,~disk.yandex.com,~disk.yandex.com.tr,~disk.yandex.fr,~disk.yandex.kz,~disk.yandex.ru,~disk.yandex.ua,~mail.yandex.by,~mail.yandex.kz,~mail.yandex.ru,~mail.yandex.ua,~mail.yandex.com,~mail.yandex.com.tr,~money.yandex.ru,~music.yandex.ru,~music.yandex.ua,~music.yandex.by,~music.yandex.kz,~news.yandex.by,~news.yandex.com,~news.yandex.fr,~news.yandex.kz,~news.yandex.ru,~news.yandex.ua,~rabota.yandex.by,~rabota.yandex.kz,~rabota.yandex.ru,~rabota.yandex.ua,~radio.yandex.by,~radio.yandex.kz,~radio.yandex.ru,~radio.yandex.ua,~realty.yandex.by,~realty.yandex.kz,~realty.yandex.ru,~realty.yandex.ua,~tv.yandex.by,~tv.yandex.kz,~tv.yandex.ru,~tv.yandex.ua,~yadi.sk,~zen.yandex.by,~zen.yandex.com,~zen.yandex.kz,~zen.yandex.ru,~zen.yandex.ua,~docviewer.yandex.by,~docviewer.yandex.com,~docviewer.yandex.com.tr,~docviewer.yandex.fr,~docviewer.yandex.kz,~docviewer.yandex.ru,~docviewer.yandex.ua,~rasp.yandex.by,~rasp.yandex.kz,~rasp.yandex.ru,~rasp.yandex.ua##.yabrowser-promo
! YB, Taxi etc. banners (mobile)
yandex.by,yandex.com,yandex.com.tr,yandex.fr,yandex.kz,yandex.ru,yandex.ua,~afisha.yandex.by,~afisha.yandex.kz,~afisha.yandex.ru,~afisha.yandex.ua,~avia.yandex.by,~avia.yandex.kz,~avia.yandex.ru,~avia.yandex.ua,~bilet.yandex.com.tr,~flights.yandex.com,~disk.yandex.by,~disk.yandex.com,~disk.yandex.com.tr,~disk.yandex.fr,~disk.yandex.kz,~disk.yandex.ru,~disk.yandex.ua,~mail.yandex.by,~mail.yandex.kz,~mail.yandex.ru,~mail.yandex.ua,~mail.yandex.com,~mail.yandex.com.tr,~money.yandex.ru,~music.yandex.ru,~music.yandex.ua,~music.yandex.by,~music.yandex.kz,~news.yandex.by,~news.yandex.com,~news.yandex.fr,~news.yandex.kz,~news.yandex.ru,~news.yandex.ua,~rabota.yandex.by,~rabota.yandex.kz,~rabota.yandex.ru,~rabota.yandex.ua,~radio.yandex.by,~radio.yandex.kz,~radio.yandex.ru,~radio.yandex.ua,~realty.yandex.by,~realty.yandex.kz,~realty.yandex.ru,~realty.yandex.ua,~tv.yandex.by,~tv.yandex.kz,~tv.yandex.ru,~tv.yandex.ua,~yadi.sk,~zen.yandex.by,~zen.yandex.com,~zen.yandex.kz,~zen.yandex.ru,~zen.yandex.ua,~docviewer.yandex.by,~docviewer.yandex.com,~docviewer.yandex.com.tr,~docviewer.yandex.fr,~docviewer.yandex.kz,~docviewer.yandex.ru,~docviewer.yandex.ua,~rasp.yandex.by,~rasp.yandex.kz,~rasp.yandex.ru,~rasp.yandex.ua##.block.teaser
! Popup
yandex.by,yandex.com,yandex.com.tr,yandex.fr,yandex.kz,yandex.ru,yandex.ua,~afisha.yandex.by,~afisha.yandex.kz,~afisha.yandex.ru,~afisha.yandex.ua,~avia.yandex.by,~avia.yandex.kz,~avia.yandex.ru,~avia.yandex.ua,~bilet.yandex.com.tr,~flights.yandex.com,~disk.yandex.by,~disk.yandex.com,~disk.yandex.com.tr,~disk.yandex.fr,~disk.yandex.kz,~disk.yandex.ru,~disk.yandex.ua,~mail.yandex.by,~mail.yandex.kz,~mail.yandex.ru,~mail.yandex.ua,~mail.yandex.com,~mail.yandex.com.tr,~money.yandex.ru,~music.yandex.ru,~music.yandex.ua,~music.yandex.by,~music.yandex.kz,~news.yandex.by,~news.yandex.com,~news.yandex.fr,~news.yandex.kz,~news.yandex.ru,~news.yandex.ua,~rabota.yandex.by,~rabota.yandex.kz,~rabota.yandex.ru,~rabota.yandex.ua,~radio.yandex.by,~radio.yandex.kz,~radio.yandex.ru,~radio.yandex.ua,~realty.yandex.by,~realty.yandex.kz,~realty.yandex.ru,~realty.yandex.ua,~tv.yandex.by,~tv.yandex.kz,~tv.yandex.ru,~tv.yandex.ua,~yadi.sk,~zen.yandex.by,~zen.yandex.com,~zen.yandex.kz,~zen.yandex.ru,~zen.yandex.ua,~docviewer.yandex.by,~docviewer.yandex.com,~docviewer.yandex.com.tr,~docviewer.yandex.fr,~docviewer.yandex.kz,~docviewer.yandex.ru,~docviewer.yandex.ua,~rasp.yandex.by,~rasp.yandex.kz,~rasp.yandex.ru,~rasp.yandex.ua##.distr-smartbanner
! Small Zen
yandex.by,yandex.com,yandex.com.tr,yandex.fr,yandex.kz,yandex.ru,yandex.ua,~afisha.yandex.by,~afisha.yandex.kz,~afisha.yandex.ru,~afisha.yandex.ua,~avia.yandex.by,~avia.yandex.kz,~avia.yandex.ru,~avia.yandex.ua,~bilet.yandex.com.tr,~flights.yandex.com,~disk.yandex.by,~disk.yandex.com,~disk.yandex.com.tr,~disk.yandex.fr,~disk.yandex.kz,~disk.yandex.ru,~disk.yandex.ua,~mail.yandex.by,~mail.yandex.kz,~mail.yandex.ru,~mail.yandex.ua,~mail.yandex.com,~mail.yandex.com.tr,~money.yandex.ru,~music.yandex.ru,~music.yandex.ua,~music.yandex.by,~music.yandex.kz,~news.yandex.by,~news.yandex.com,~news.yandex.fr,~news.yandex.kz,~news.yandex.ru,~news.yandex.ua,~rabota.yandex.by,~rabota.yandex.kz,~rabota.yandex.ru,~rabota.yandex.ua,~radio.yandex.by,~radio.yandex.kz,~radio.yandex.ru,~radio.yandex.ua,~realty.yandex.by,~realty.yandex.kz,~realty.yandex.ru,~realty.yandex.ua,~tv.yandex.by,~tv.yandex.kz,~tv.yandex.ru,~tv.yandex.ua,~yadi.sk,~zen.yandex.by,~zen.yandex.com,~zen.yandex.kz,~zen.yandex.ru,~zen.yandex.ua,~docviewer.yandex.by,~docviewer.yandex.com,~docviewer.yandex.com.tr,~docviewer.yandex.fr,~docviewer.yandex.kz,~docviewer.yandex.ru,~docviewer.yandex.ua,~rasp.yandex.by,~rasp.yandex.kz,~rasp.yandex.ru,~rasp.yandex.ua##.desk-notif-card_zen_yes
!
! Yandex.Search
! YB banner at the top
yandex.by,yandex.com,yandex.com.tr,yandex.fr,yandex.kz,yandex.ru,yandex.ua,~afisha.yandex.by,~afisha.yandex.kz,~afisha.yandex.ru,~afisha.yandex.ua,~avia.yandex.by,~avia.yandex.kz,~avia.yandex.ru,~avia.yandex.ua,~bilet.yandex.com.tr,~flights.yandex.com,~disk.yandex.by,~disk.yandex.com,~disk.yandex.com.tr,~disk.yandex.fr,~disk.yandex.kz,~disk.yandex.ru,~disk.yandex.ua,~mail.yandex.by,~mail.yandex.kz,~mail.yandex.ru,~mail.yandex.ua,~mail.yandex.com,~mail.yandex.com.tr,~money.yandex.ru,~music.yandex.ru,~music.yandex.ua,~music.yandex.by,~music.yandex.kz,~news.yandex.by,~news.yandex.com,~news.yandex.fr,~news.yandex.kz,~news.yandex.ru,~news.yandex.ua,~rabota.yandex.by,~rabota.yandex.kz,~rabota.yandex.ru,~rabota.yandex.ua,~radio.yandex.by,~radio.yandex.kz,~radio.yandex.ru,~radio.yandex.ua,~realty.yandex.by,~realty.yandex.kz,~realty.yandex.ru,~realty.yandex.ua,~tv.yandex.by,~tv.yandex.kz,~tv.yandex.ru,~tv.yandex.ua,~yadi.sk,~zen.yandex.by,~zen.yandex.com,~zen.yandex.kz,~zen.yandex.ru,~zen.yandex.ua,~docviewer.yandex.by,~docviewer.yandex.com,~docviewer.yandex.com.tr,~docviewer.yandex.fr,~docviewer.yandex.kz,~docviewer.yandex.ru,~docviewer.yandex.ua,~rasp.yandex.by,~rasp.yandex.kz,~rasp.yandex.ru,~rasp.yandex.ua#$#.head-stripe { position: absolute!important; left: -3000px!important; }
! Yandex - default search engine (above the search results)
yandex.by,yandex.com,yandex.com.tr,yandex.fr,yandex.kz,yandex.ru,yandex.ua,~afisha.yandex.by,~afisha.yandex.kz,~afisha.yandex.ru,~afisha.yandex.ua,~avia.yandex.by,~avia.yandex.kz,~avia.yandex.ru,~avia.yandex.ua,~bilet.yandex.com.tr,~flights.yandex.com,~disk.yandex.by,~disk.yandex.com,~disk.yandex.com.tr,~disk.yandex.fr,~disk.yandex.kz,~disk.yandex.ru,~disk.yandex.ua,~mail.yandex.by,~mail.yandex.kz,~mail.yandex.ru,~mail.yandex.ua,~mail.yandex.com,~mail.yandex.com.tr,~money.yandex.ru,~music.yandex.ru,~music.yandex.ua,~music.yandex.by,~music.yandex.kz,~news.yandex.by,~news.yandex.com,~news.yandex.fr,~news.yandex.kz,~news.yandex.ru,~news.yandex.ua,~rabota.yandex.by,~rabota.yandex.kz,~rabota.yandex.ru,~rabota.yandex.ua,~radio.yandex.by,~radio.yandex.kz,~radio.yandex.ru,~radio.yandex.ua,~realty.yandex.by,~realty.yandex.kz,~realty.yandex.ru,~realty.yandex.ua,~tv.yandex.by,~tv.yandex.kz,~tv.yandex.ru,~tv.yandex.ua,~yadi.sk,~zen.yandex.by,~zen.yandex.com,~zen.yandex.kz,~zen.yandex.ru,~zen.yandex.ua,~docviewer.yandex.by,~docviewer.yandex.com,~docviewer.yandex.com.tr,~docviewer.yandex.fr,~docviewer.yandex.kz,~docviewer.yandex.ru,~docviewer.yandex.ua,~rasp.yandex.by,~rasp.yandex.kz,~rasp.yandex.ru,~rasp.yandex.ua##.default-search
! Log in to improve your Search (popup)
yandex.by,yandex.com,yandex.com.tr,yandex.fr,yandex.kz,yandex.ru,yandex.ua,~afisha.yandex.by,~afisha.yandex.kz,~afisha.yandex.ru,~afisha.yandex.ua,~avia.yandex.by,~avia.yandex.kz,~avia.yandex.ru,~avia.yandex.ua,~bilet.yandex.com.tr,~flights.yandex.com,~disk.yandex.by,~disk.yandex.com,~disk.yandex.com.tr,~disk.yandex.fr,~disk.yandex.kz,~disk.yandex.ru,~disk.yandex.ua,~mail.yandex.by,~mail.yandex.kz,~mail.yandex.ru,~mail.yandex.ua,~mail.yandex.com,~mail.yandex.com.tr,~money.yandex.ru,~music.yandex.ru,~music.yandex.ua,~music.yandex.by,~music.yandex.kz,~news.yandex.by,~news.yandex.com,~news.yandex.fr,~news.yandex.kz,~news.yandex.ru,~news.yandex.ua,~rabota.yandex.by,~rabota.yandex.kz,~rabota.yandex.ru,~rabota.yandex.ua,~radio.yandex.by,~radio.yandex.kz,~radio.yandex.ru,~radio.yandex.ua,~realty.yandex.by,~realty.yandex.kz,~realty.yandex.ru,~realty.yandex.ua,~tv.yandex.by,~tv.yandex.kz,~tv.yandex.ru,~tv.yandex.ua,~yadi.sk,~zen.yandex.by,~zen.yandex.com,~zen.yandex.kz,~zen.yandex.ru,~zen.yandex.ua,~docviewer.yandex.by,~docviewer.yandex.com,~docviewer.yandex.com.tr,~docviewer.yandex.fr,~docviewer.yandex.kz,~docviewer.yandex.ru,~docviewer.yandex.ua,~rasp.yandex.by,~rasp.yandex.kz,~rasp.yandex.ru,~rasp.yandex.ua##.promo-popup_js_inited
! Default search engine and start page
yandex.by,yandex.com,yandex.com.tr,yandex.fr,yandex.kz,yandex.ru,yandex.ua,~afisha.yandex.by,~afisha.yandex.kz,~afisha.yandex.ru,~afisha.yandex.ua,~avia.yandex.by,~avia.yandex.kz,~avia.yandex.ru,~avia.yandex.ua,~bilet.yandex.com.tr,~flights.yandex.com,~disk.yandex.by,~disk.yandex.com,~disk.yandex.com.tr,~disk.yandex.fr,~disk.yandex.kz,~disk.yandex.ru,~disk.yandex.ua,~mail.yandex.by,~mail.yandex.kz,~mail.yandex.ru,~mail.yandex.ua,~mail.yandex.com,~mail.yandex.com.tr,~money.yandex.ru,~music.yandex.ru,~music.yandex.ua,~music.yandex.by,~music.yandex.kz,~news.yandex.by,~news.yandex.com,~news.yandex.fr,~news.yandex.kz,~news.yandex.ru,~news.yandex.ua,~rabota.yandex.by,~rabota.yandex.kz,~rabota.yandex.ru,~rabota.yandex.ua,~radio.yandex.by,~radio.yandex.kz,~radio.yandex.ru,~radio.yandex.ua,~realty.yandex.by,~realty.yandex.kz,~realty.yandex.ru,~realty.yandex.ua,~tv.yandex.by,~tv.yandex.kz,~tv.yandex.ru,~tv.yandex.ua,~yadi.sk,~zen.yandex.by,~zen.yandex.com,~zen.yandex.kz,~zen.yandex.ru,~zen.yandex.ua,~docviewer.yandex.by,~docviewer.yandex.com,~docviewer.yandex.com.tr,~docviewer.yandex.fr,~docviewer.yandex.kz,~docviewer.yandex.ru,~docviewer.yandex.ua,~rasp.yandex.by,~rasp.yandex.kz,~rasp.yandex.ru,~rasp.yandex.ua##.distr-popup_js_inited
yandex.by,yandex.com,yandex.com.tr,yandex.fr,yandex.kz,yandex.ru,yandex.ua,~afisha.yandex.by,~afisha.yandex.kz,~afisha.yandex.ru,~afisha.yandex.ua,~avia.yandex.by,~avia.yandex.kz,~avia.yandex.ru,~avia.yandex.ua,~bilet.yandex.com.tr,~flights.yandex.com,~disk.yandex.by,~disk.yandex.com,~disk.yandex.com.tr,~disk.yandex.fr,~disk.yandex.kz,~disk.yandex.ru,~disk.yandex.ua,~mail.yandex.by,~mail.yandex.kz,~mail.yandex.ru,~mail.yandex.ua,~mail.yandex.com,~mail.yandex.com.tr,~money.yandex.ru,~music.yandex.ru,~music.yandex.ua,~music.yandex.by,~music.yandex.kz,~news.yandex.by,~news.yandex.com,~news.yandex.fr,~news.yandex.kz,~news.yandex.ru,~news.yandex.ua,~rabota.yandex.by,~rabota.yandex.kz,~rabota.yandex.ru,~rabota.yandex.ua,~radio.yandex.by,~radio.yandex.kz,~radio.yandex.ru,~radio.yandex.ua,~realty.yandex.by,~realty.yandex.kz,~realty.yandex.ru,~realty.yandex.ua,~tv.yandex.by,~tv.yandex.kz,~tv.yandex.ru,~tv.yandex.ua,~yadi.sk,~zen.yandex.by,~zen.yandex.com,~zen.yandex.kz,~zen.yandex.ru,~zen.yandex.ua,~docviewer.yandex.by,~docviewer.yandex.com,~docviewer.yandex.com.tr,~docviewer.yandex.fr,~docviewer.yandex.kz,~docviewer.yandex.ru,~docviewer.yandex.ua,~rasp.yandex.by,~rasp.yandex.kz,~rasp.yandex.ru,~rasp.yandex.ua##.distr-default-search
! YB, debts, mobile yandex in footer (desktop)
yandex.by,yandex.com,yandex.com.tr,yandex.fr,yandex.kz,yandex.ru,yandex.ua,~afisha.yandex.by,~afisha.yandex.kz,~afisha.yandex.ru,~afisha.yandex.ua,~avia.yandex.by,~avia.yandex.kz,~avia.yandex.ru,~avia.yandex.ua,~bilet.yandex.com.tr,~flights.yandex.com,~disk.yandex.by,~disk.yandex.com,~disk.yandex.com.tr,~disk.yandex.fr,~disk.yandex.kz,~disk.yandex.ru,~disk.yandex.ua,~mail.yandex.by,~mail.yandex.kz,~mail.yandex.ru,~mail.yandex.ua,~mail.yandex.com,~mail.yandex.com.tr,~money.yandex.ru,~music.yandex.ru,~music.yandex.ua,~music.yandex.by,~music.yandex.kz,~news.yandex.by,~news.yandex.com,~news.yandex.fr,~news.yandex.kz,~news.yandex.ru,~news.yandex.ua,~rabota.yandex.by,~rabota.yandex.kz,~rabota.yandex.ru,~rabota.yandex.ua,~radio.yandex.by,~radio.yandex.kz,~radio.yandex.ru,~radio.yandex.ua,~realty.yandex.by,~realty.yandex.kz,~realty.yandex.ru,~realty.yandex.ua,~tv.yandex.by,~tv.yandex.kz,~tv.yandex.ru,~tv.yandex.ua,~yadi.sk,~zen.yandex.by,~zen.yandex.com,~zen.yandex.kz,~zen.yandex.ru,~zen.yandex.ua,~docviewer.yandex.by,~docviewer.yandex.com,~docviewer.yandex.com.tr,~docviewer.yandex.fr,~docviewer.yandex.kz,~docviewer.yandex.ru,~docviewer.yandex.ua,~rasp.yandex.by,~rasp.yandex.kz,~rasp.yandex.ru,~rasp.yandex.ua##div[class$="distro_shown_yes"]
! YB, debts, mobile yandex in footer (mobile)
yandex.by,yandex.com,yandex.com.tr,yandex.fr,yandex.kz,yandex.ru,yandex.ua,~afisha.yandex.by,~afisha.yandex.kz,~afisha.yandex.ru,~afisha.yandex.ua,~avia.yandex.by,~avia.yandex.kz,~avia.yandex.ru,~avia.yandex.ua,~bilet.yandex.com.tr,~flights.yandex.com,~disk.yandex.by,~disk.yandex.com,~disk.yandex.com.tr,~disk.yandex.fr,~disk.yandex.kz,~disk.yandex.ru,~disk.yandex.ua,~mail.yandex.by,~mail.yandex.kz,~mail.yandex.ru,~mail.yandex.ua,~mail.yandex.com,~mail.yandex.com.tr,~money.yandex.ru,~music.yandex.ru,~music.yandex.ua,~music.yandex.by,~music.yandex.kz,~news.yandex.by,~news.yandex.com,~news.yandex.fr,~news.yandex.kz,~news.yandex.ru,~news.yandex.ua,~rabota.yandex.by,~rabota.yandex.kz,~rabota.yandex.ru,~rabota.yandex.ua,~radio.yandex.by,~radio.yandex.kz,~radio.yandex.ru,~radio.yandex.ua,~realty.yandex.by,~realty.yandex.kz,~realty.yandex.ru,~realty.yandex.ua,~tv.yandex.by,~tv.yandex.kz,~tv.yandex.ru,~tv.yandex.ua,~yadi.sk,~zen.yandex.by,~zen.yandex.com,~zen.yandex.kz,~zen.yandex.ru,~zen.yandex.ua,~docviewer.yandex.by,~docviewer.yandex.com,~docviewer.yandex.com.tr,~docviewer.yandex.fr,~docviewer.yandex.kz,~docviewer.yandex.ru,~docviewer.yandex.ua,~rasp.yandex.by,~rasp.yandex.kz,~rasp.yandex.ru,~rasp.yandex.ua##.footer_type_distro
yandex.by,yandex.com,yandex.com.tr,yandex.fr,yandex.kz,yandex.ru,yandex.ua,~afisha.yandex.by,~afisha.yandex.kz,~afisha.yandex.ru,~afisha.yandex.ua,~avia.yandex.by,~avia.yandex.kz,~avia.yandex.ru,~avia.yandex.ua,~bilet.yandex.com.tr,~flights.yandex.com,~disk.yandex.by,~disk.yandex.com,~disk.yandex.com.tr,~disk.yandex.fr,~disk.yandex.kz,~disk.yandex.ru,~disk.yandex.ua,~mail.yandex.by,~mail.yandex.kz,~mail.yandex.ru,~mail.yandex.ua,~mail.yandex.com,~mail.yandex.com.tr,~money.yandex.ru,~music.yandex.ru,~music.yandex.ua,~music.yandex.by,~music.yandex.kz,~news.yandex.by,~news.yandex.com,~news.yandex.fr,~news.yandex.kz,~news.yandex.ru,~news.yandex.ua,~rabota.yandex.by,~rabota.yandex.kz,~rabota.yandex.ru,~rabota.yandex.ua,~radio.yandex.by,~radio.yandex.kz,~radio.yandex.ru,~radio.yandex.ua,~realty.yandex.by,~realty.yandex.kz,~realty.yandex.ru,~realty.yandex.ua,~tv.yandex.by,~tv.yandex.kz,~tv.yandex.ru,~tv.yandex.ua,~yadi.sk,~zen.yandex.by,~zen.yandex.com,~zen.yandex.kz,~zen.yandex.ru,~zen.yandex.ua,~docviewer.yandex.by,~docviewer.yandex.com,~docviewer.yandex.com.tr,~docviewer.yandex.fr,~docviewer.yandex.kz,~docviewer.yandex.ru,~docviewer.yandex.ua,~rasp.yandex.by,~rasp.yandex.kz,~rasp.yandex.ru,~rasp.yandex.ua##.app_clickable_yes
! YB in Zen block
yandex.by,yandex.com,yandex.com.tr,yandex.fr,yandex.kz,yandex.ru,yandex.ua,~afisha.yandex.by,~afisha.yandex.kz,~afisha.yandex.ru,~afisha.yandex.ua,~avia.yandex.by,~avia.yandex.kz,~avia.yandex.ru,~avia.yandex.ua,~bilet.yandex.com.tr,~flights.yandex.com,~disk.yandex.by,~disk.yandex.com,~disk.yandex.com.tr,~disk.yandex.fr,~disk.yandex.kz,~disk.yandex.ru,~disk.yandex.ua,~mail.yandex.by,~mail.yandex.kz,~mail.yandex.ru,~mail.yandex.ua,~mail.yandex.com,~mail.yandex.com.tr,~money.yandex.ru,~music.yandex.ru,~music.yandex.ua,~music.yandex.by,~music.yandex.kz,~news.yandex.by,~news.yandex.com,~news.yandex.fr,~news.yandex.kz,~news.yandex.ru,~news.yandex.ua,~rabota.yandex.by,~rabota.yandex.kz,~rabota.yandex.ru,~rabota.yandex.ua,~radio.yandex.by,~radio.yandex.kz,~radio.yandex.ru,~radio.yandex.ua,~realty.yandex.by,~realty.yandex.kz,~realty.yandex.ru,~realty.yandex.ua,~tv.yandex.by,~tv.yandex.kz,~tv.yandex.ru,~tv.yandex.ua,~yadi.sk,~zen.yandex.by,~zen.yandex.com,~zen.yandex.kz,~zen.yandex.ru,~zen.yandex.ua,~docviewer.yandex.by,~docviewer.yandex.com,~docviewer.yandex.com.tr,~docviewer.yandex.fr,~docviewer.yandex.kz,~docviewer.yandex.ru,~docviewer.yandex.ua,~rasp.yandex.by,~rasp.yandex.kz,~rasp.yandex.ru,~rasp.yandex.ua##.media-promo
! Mobile apps
yandex.by,yandex.com,yandex.com.tr,yandex.fr,yandex.kz,yandex.ru,yandex.ua,~afisha.yandex.by,~afisha.yandex.kz,~afisha.yandex.ru,~afisha.yandex.ua,~avia.yandex.by,~avia.yandex.kz,~avia.yandex.ru,~avia.yandex.ua,~bilet.yandex.com.tr,~flights.yandex.com,~disk.yandex.by,~disk.yandex.com,~disk.yandex.com.tr,~disk.yandex.fr,~disk.yandex.kz,~disk.yandex.ru,~disk.yandex.ua,~mail.yandex.by,~mail.yandex.kz,~mail.yandex.ru,~mail.yandex.ua,~mail.yandex.com,~mail.yandex.com.tr,~money.yandex.ru,~music.yandex.ru,~music.yandex.ua,~music.yandex.by,~music.yandex.kz,~news.yandex.by,~news.yandex.com,~news.yandex.fr,~news.yandex.kz,~news.yandex.ru,~news.yandex.ua,~rabota.yandex.by,~rabota.yandex.kz,~rabota.yandex.ru,~rabota.yandex.ua,~radio.yandex.by,~radio.yandex.kz,~radio.yandex.ru,~radio.yandex.ua,~realty.yandex.by,~realty.yandex.kz,~realty.yandex.ru,~realty.yandex.ua,~tv.yandex.by,~tv.yandex.kz,~tv.yandex.ru,~tv.yandex.ua,~yadi.sk,~zen.yandex.by,~zen.yandex.com,~zen.yandex.kz,~zen.yandex.ru,~zen.yandex.ua,~docviewer.yandex.by,~docviewer.yandex.com,~docviewer.yandex.com.tr,~docviewer.yandex.fr,~docviewer.yandex.kz,~docviewer.yandex.ru,~docviewer.yandex.ua,~rasp.yandex.by,~rasp.yandex.kz,~rasp.yandex.ru,~rasp.yandex.ua##.serp-footer__mob-app
yandex.by,yandex.com,yandex.com.tr,yandex.fr,yandex.kz,yandex.ru,yandex.ua,~afisha.yandex.by,~afisha.yandex.kz,~afisha.yandex.ru,~afisha.yandex.ua,~avia.yandex.by,~avia.yandex.kz,~avia.yandex.ru,~avia.yandex.ua,~bilet.yandex.com.tr,~flights.yandex.com,~disk.yandex.by,~disk.yandex.com,~disk.yandex.com.tr,~disk.yandex.fr,~disk.yandex.kz,~disk.yandex.ru,~disk.yandex.ua,~mail.yandex.by,~mail.yandex.kz,~mail.yandex.ru,~mail.yandex.ua,~mail.yandex.com,~mail.yandex.com.tr,~money.yandex.ru,~music.yandex.ru,~music.yandex.ua,~music.yandex.by,~music.yandex.kz,~news.yandex.by,~news.yandex.com,~news.yandex.fr,~news.yandex.kz,~news.yandex.ru,~news.yandex.ua,~rabota.yandex.by,~rabota.yandex.kz,~rabota.yandex.ru,~rabota.yandex.ua,~radio.yandex.by,~radio.yandex.kz,~radio.yandex.ru,~radio.yandex.ua,~realty.yandex.by,~realty.yandex.kz,~realty.yandex.ru,~realty.yandex.ua,~tv.yandex.by,~tv.yandex.kz,~tv.yandex.ru,~tv.yandex.ua,~yadi.sk,~zen.yandex.by,~zen.yandex.com,~zen.yandex.kz,~zen.yandex.ru,~zen.yandex.ua,~docviewer.yandex.by,~docviewer.yandex.com,~docviewer.yandex.com.tr,~docviewer.yandex.fr,~docviewer.yandex.kz,~docviewer.yandex.ru,~docviewer.yandex.ua,~rasp.yandex.by,~rasp.yandex.kz,~rasp.yandex.ru,~rasp.yandex.ua##.serp-footer__promo
!
! Yandex.Weather
! Mobile apps
yandex.by,yandex.kz,yandex.ru,yandex.ua,~afisha.yandex.by,~afisha.yandex.kz,~afisha.yandex.ru,~afisha.yandex.ua,~avia.yandex.by,~avia.yandex.kz,~avia.yandex.ru,~avia.yandex.ua,~bilet.yandex.com.tr,~flights.yandex.com,~disk.yandex.by,~disk.yandex.com,~disk.yandex.com.tr,~disk.yandex.fr,~disk.yandex.kz,~disk.yandex.ru,~disk.yandex.ua,~mail.yandex.by,~mail.yandex.kz,~mail.yandex.ru,~mail.yandex.ua,~mail.yandex.com,~mail.yandex.com.tr,~money.yandex.ru,~music.yandex.ru,~music.yandex.ua,~music.yandex.by,~music.yandex.kz,~news.yandex.by,~news.yandex.com,~news.yandex.fr,~news.yandex.kz,~news.yandex.ru,~news.yandex.ua,~rabota.yandex.by,~rabota.yandex.kz,~rabota.yandex.ru,~rabota.yandex.ua,~radio.yandex.by,~radio.yandex.kz,~radio.yandex.ru,~radio.yandex.ua,~realty.yandex.by,~realty.yandex.kz,~realty.yandex.ru,~realty.yandex.ua,~tv.yandex.by,~tv.yandex.kz,~tv.yandex.ru,~tv.yandex.ua,~yadi.sk,~zen.yandex.by,~zen.yandex.com,~zen.yandex.kz,~zen.yandex.ru,~zen.yandex.ua##.footer__links > div.links-section:has(> div.links-section__title:contains(Мобильные приложения))
yandex.com,yandex.com.tr,~afisha.yandex.by,~afisha.yandex.kz,~afisha.yandex.ru,~afisha.yandex.ua,~avia.yandex.by,~avia.yandex.kz,~avia.yandex.ru,~avia.yandex.ua,~bilet.yandex.com.tr,~flights.yandex.com,~disk.yandex.by,~disk.yandex.com,~disk.yandex.com.tr,~disk.yandex.fr,~disk.yandex.kz,~disk.yandex.ru,~disk.yandex.ua,~mail.yandex.by,~mail.yandex.kz,~mail.yandex.ru,~mail.yandex.ua,~mail.yandex.com,~mail.yandex.com.tr,~money.yandex.ru,~music.yandex.ru,~music.yandex.ua,~music.yandex.by,~music.yandex.kz,~news.yandex.by,~news.yandex.com,~news.yandex.fr,~news.yandex.kz,~news.yandex.ru,~news.yandex.ua,~rabota.yandex.by,~rabota.yandex.kz,~rabota.yandex.ru,~rabota.yandex.ua,~radio.yandex.by,~radio.yandex.kz,~radio.yandex.ru,~radio.yandex.ua,~realty.yandex.by,~realty.yandex.kz,~realty.yandex.ru,~realty.yandex.ua,~tv.yandex.by,~tv.yandex.kz,~tv.yandex.ru,~tv.yandex.ua,~yadi.sk,~zen.yandex.by,~zen.yandex.com,~zen.yandex.kz,~zen.yandex.ru,~zen.yandex.ua##.info__top-cities-more > div.apps
yandex.by,yandex.kz,yandex.ru,yandex.ua,~afisha.yandex.by,~afisha.yandex.kz,~afisha.yandex.ru,~afisha.yandex.ua,~avia.yandex.by,~avia.yandex.kz,~avia.yandex.ru,~avia.yandex.ua,~bilet.yandex.com.tr,~flights.yandex.com,~disk.yandex.by,~disk.yandex.com,~disk.yandex.com.tr,~disk.yandex.fr,~disk.yandex.kz,~disk.yandex.ru,~disk.yandex.ua,~mail.yandex.by,~mail.yandex.kz,~mail.yandex.ru,~mail.yandex.ua,~mail.yandex.com,~mail.yandex.com.tr,~money.yandex.ru,~music.yandex.ru,~music.yandex.ua,~music.yandex.by,~music.yandex.kz,~news.yandex.by,~news.yandex.com,~news.yandex.fr,~news.yandex.kz,~news.yandex.ru,~news.yandex.ua,~rabota.yandex.by,~rabota.yandex.kz,~rabota.yandex.ru,~rabota.yandex.ua,~radio.yandex.by,~radio.yandex.kz,~radio.yandex.ru,~radio.yandex.ua,~realty.yandex.by,~realty.yandex.kz,~realty.yandex.ru,~realty.yandex.ua,~tv.yandex.by,~tv.yandex.kz,~tv.yandex.ru,~tv.yandex.ua,~yadi.sk,~zen.yandex.by,~zen.yandex.com,~zen.yandex.kz,~zen.yandex.ru,~zen.yandex.ua##.footer__links > div.links-section > div.apps
!
! Yandex.Mail
! Mobile apps
mail.yandex.by,mail.yandex.com,mail.yandex.com.tr,mail.yandex.fr,mail.yandex.kz,mail.yandex.ru,mail.yandex.ua##.container div.market-place
mail.yandex.by,mail.yandex.com,mail.yandex.com.tr,mail.yandex.fr,mail.yandex.kz,mail.yandex.ru,mail.yandex.ua##.mail-PromoMobileApp
mail.yandex.by,mail.yandex.com,mail.yandex.com.tr,mail.yandex.fr,mail.yandex.kz,mail.yandex.ru,mail.yandex.ua##.mail-Done-Promo-Container
mail.yandex.by,mail.yandex.com,mail.yandex.com.tr,mail.yandex.fr,mail.yandex.kz,mail.yandex.ru,mail.yandex.ua##.js-inline-wizard-dummy
! Push notifications
mail.yandex.by,mail.yandex.com,mail.yandex.com.tr,mail.yandex.fr,mail.yandex.kz,mail.yandex.ru,mail.yandex.ua##.mail-PushNotificationsPromo
!
! Yandex.Maps
! Default search engine and start page(popup)
||yastatic.net/daas/stripe.html
! App banner (mobile site)
yandex.by,yandex.com,yandex.com.tr,yandex.fr,yandex.kz,yandex.ru,yandex.ua##.promo-banner
! Реклама кинотеатров
yandex.by,yandex.com,yandex.com.tr,yandex.fr,yandex.kz,yandex.ru,yandex.ua##.home-panel-content-view__tip > a.tip[target="_self"] > img
!
! Yandex.Market
! Subscription
market.yandex.by,market.yandex.kz,market.yandex.ru,market.yandex.ua##.footer-subscription-wrap
! Promotions (at the top)
market.yandex.by,market.yandex.kz,market.yandex.ru,market.yandex.ua##.head-banner
m.market.yandex.by,m.market.yandex.kz,m.market.yandex.ru,m.market.yandex.ua##.w-head-banner
! Subscription (popup)
market.yandex.by,market.yandex.kz,market.yandex.ru,market.yandex.ua##.n-settings-notifications-popup
!
! Yandex.News
! Mobile app / push notifications
m.news.yandex.by,m.news.yandex.com,m.news.yandex.fr,m.news.yandex.kz,m.news.yandex.ru,m.news.yandex.ua##.smart-banner
!
! Yandex.Afisha
! Event banner at the top
afisha.yandex.by,afisha.yandex.com,afisha.yandex.kz,afisha.yandex.ru,afisha.yandex.ua##.content-rubric > a > img
afisha.yandex.by,afisha.yandex.com,afisha.yandex.kz,afisha.yandex.ru,afisha.yandex.ua##.event-background
afisha.yandex.by,afisha.yandex.com,afisha.yandex.kz,afisha.yandex.ru,afisha.yandex.ua#$#.content-event_commercial_yes { margin-top: 0!important; }
! Subscription
afisha.yandex.by,afisha.yandex.com,afisha.yandex.kz,afisha.yandex.ru,afisha.yandex.ua##.page-footer__subscribe
!
! Yandex.Aviasales
! Mobile apps
avia.yandex.by,avia.yandex.kz,avia.yandex.ru,avia.yandex.ua,bilet.yandex.com.tr,flights.yandex.com##.mobile-app-links_kb
!
! Yandex.Music
! Anti-adblock message
music.yandex.by,music.yandex.kz,music.yandex.ru,music.yandex.ua#$#.notify__message { position: absolute!important; left: -3000px!important; }
music.yandex.by,music.yandex.kz,music.yandex.ru,music.yandex.ua##.notify__message
! pepsi
music.yandex.by,music.yandex.kz,music.yandex.ru,music.yandex.ua##.page-main__line__pepsi
! Yandex.Radio
! Anti-adblock message
radio.yandex.by,radio.yandex.kz,radio.yandex.ru,radio.yandex.ua##.notify
! Disable ads(bottom)
music.yandex.by,music.yandex.kz,music.yandex.ru,music.yandex.ua#$#.bar-below { position: absolute!important; left: -3000px!important; }
music.yandex.by,music.yandex.kz,music.yandex.ru,music.yandex.ua##.bar-below
! Disable ads(sidebar)
music.yandex.by,music.yandex.kz,music.yandex.ru,music.yandex.ua##.ads-block__no-ads
! Mobile apps
music.yandex.by,music.yandex.kz,music.yandex.ru,music.yandex.ua#$#.button-store_all { position: absolute!important; left: -3000px!important; }
music.yandex.by,music.yandex.kz,music.yandex.ru,music.yandex.ua##.button-store_all
music.yandex.by,music.yandex.kz,music.yandex.ru,music.yandex.ua##.app-sms
! Promo (dogs)
music.yandex.by,music.yandex.kz,music.yandex.ru,music.yandex.ua##a[href="/contest/dogmoroz"]
! Paid subscription
music.yandex.by,music.yandex.kz,music.yandex.ru,music.yandex.ua##.subscription-hint
!
! Yandex.Недвижимость
! Баннер с новостройками
realty.yandex.by,realty.yandex.kz,realty.yandex.ru,realty.yandex.ua##.newbuilding-discount-promo
realty.yandex.by,realty.yandex.kz,realty.yandex.ru,realty.yandex.ua##a[href*="/novostrojka/"][data-bem*="serp.promo.newlisting"]
! Subscription (popup)
realty.yandex.by,realty.yandex.kz,realty.yandex.ru,realty.yandex.ua##.subscription-wizard
realty.yandex.by,realty.yandex.kz,realty.yandex.ru,realty.yandex.ua##.popup__under_type_paranja
!
! Yandex.Translate
! Mobile apps
translate.yandex.by,translate.yandex.com,ceviri.yandex.com.tr,translate.yandex.fr,translate.yandex.kz,translate.yandex.ru,translate.yandex.ua##.footer-line_promo
!
! Yandex.Zen
zen.yandex.by,zen.yandex.com,zen.yandex.kz,zen.yandex.ru,zen.yandex.ua##.article-footer__subscribe
! Yandex.Health
health.yandex.ru##.subscribe-user__wrapper
health.yandex.ru##.product-start-consultation
! Yandex.Zen (third-party)
||zen.yandex.ru/widget-loader$domain=~yandex.by|~yandex.kz|~yandex.ru|~yandex.ua
||zen.yandex.ru/widget-loader$domain=mail.yandex.by|mail.yandex.kz|mail.yandex.ru|mail.yandex.ua|mail.yandex.com|mail.yandex.com.tr
! Yandex.Metrica
! Mobile apps
disk.yandex.by,disk.yandex.com,disk.yandex.com.tr,disk.yandex.fr,disk.yandex.kz,disk.yandex.ru,disk.yandex.ua##.metrika-app
!
! Полоса сверху
! Поиск, пробки, погода на стартовой, ЯБраузер
||yandex.*/*stripe.html|
!
! Yandex.Еда
! Запрос адреса
eda.yandex##.src-common-components-common-MobileAddressPromptBar--mobileAddressPromptBar-content
!
! Yandex.Money
! Mobile apps
money.yandex.ru##.payment-success__banner
money.yandex.ru##.money-app-promo2
money.yandex.ru##.promo-header
!
! END: Yandex
!
!
! START: mail.ru
!
! Main page - self promo
mail.ru##div[class="grid__lcol i-pull-left"] > div.well.notify
mail.ru##.bubble-home
mail.ru##.grid__header > div.toolbar
mail.ru##.grid__rcol > div.games
! New Year banner
mail.ru###mailbox-container > span[title="С Новым годом!"]
mail.ru##body > div[class*="grid_slidotype"] div[class*="slidotype_ny"]
! self promo
cloud.mail.ru##.space__payment
go.mail.ru##div[id^="tb-"][class$="_footer"]
ok.ru##.layer_hld > div.__pro-music
! push notification
mail.ru##body > div.tooltip:has(div.m-push-notifications__buttons)
||mail.ru/*/js/cmpld/_push.js
! start page
mail.ru###ph-extension-block
!
! App banners
cloud.mail.ru##.b-layer_disko-popup
cloud.mail.ru##div[class^="portal-promo-manager"]
cloud.mail.ru##div[class^="portal-promo-manager"]+div[onclick="this.querySelector('a').click();"]
cloud.mail.ru##.b-bubble__wrapper
! popups
mail.ru##.m-subscription
mail.ru##.js-promo-popup
! END: mail.ru
!
!***
!* Subscriptions/newsletters (not popups)
!*
freesoft.ru##a[href="https://t.me/freesoftru"]
sleduizamnoi.com##.widget_bloomwidget
evrl.to##.art-telegram-container
rockstargame.su##.subs-form
cadelta.ru##.zen_subscribe
dnevnyk-uspeha.com##.feed_flat
cooking.nytimes.com##.has-newsletter
nakedsecurity.sophos.com###newsletter-signup
oantagonista.com##.form-newsletter
mrskin.com##.inline-access-form
dom.ria.com##.mailing
allowwonder.com##.td-post-content > .code-block-3
jornaldacidadeonline.com.br##.newsletter__card