-
Notifications
You must be signed in to change notification settings - Fork 4
/
PAF_newsletters.txt
2114 lines (2114 loc) · 100 KB
/
PAF_newsletters.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: 🇵🇱 Polskie Filtry Elementów Irytujących - Newslettery
! Polish Annoyance Filters - Newsletters
! Codename: Newsletters
! Description: Filtry ukrywające i blokujące newslettery (bez pop-upów).
! Last modified: Wed, 27 Nov 2024, 13:11 UTC+01:00
! Version: 2024.11.27.0
! Expires: 3 days
! Najnowsza wersja zawsze na: https://github.com/FiltersHeroes/PolishAnnoyanceFilters
! Zgłoszenia:
! Formularz (nie wymaga rejestracji) => https://polishannoyancefilters.netlify.app/issues
! GitHub => https://github.com/FiltersHeroes/PolishAnnoyanceFilters/issues
! License: CC BY-NC-SA 4.0 (https://creativecommons.org/licenses/by-nc-sa/4.0/deed)
! Homepage: https://polishannoyancefilters.netlify.app
! Maintainer: Filters Heroes
! Aktualizacja: śro, 27 lis 2024, 13:11 UTC+01:00
!
!
!
! Specyficzne filtry
||4prm.pl/*/4p_newsletter.jpg
||a-ajurweda.pl/images/layout/ajurweda/newsletter_ajurweda.png
||app2.salesmanago.pl/cf/*/zapis_na_newsletter_$subdocument
||bee.pl/System/Files/*/theme/*zapisz-sie*.jpg
||biuroprasowe.pl/userfiles/_CMS_/EPR3/baner_newsletter.jpg
||biuroprasowe.pl/userfiles/_CMS_/EPR/biuroprasowe-reklama.jpg
||carry.pl//themes/default/img/newsletter1.png
||dobremiejsce.org/wp-content/themes/dobremiejsce_org_pds/images/s2-980.jpg
||duckduckgo.com/assets/icons/footer/newsletter.svg$image
||forms.freshmail.io^$subdocument,domain=1242.eu|ita.tools|pl|pulsembed.eu
||genway.pl/images/frontend/theme/whitegen/social/newsletter.png
||i.perspektywy.net/pages/jhovngq2lj/banners/H41N57ow3HyikR9iXCxK4vKmEyIGFXSVPZHc9ABq.jpeg$domain=perspektywy.pl
||klinkierbud.pl/css/img/baner_newsletter.jpg
||obi.pl/images/footer/newsletter.jpg
||offshorewindpoland.pl/wp-content/uploads/20*/*/newsLETTER-*.png
||perspektywy.pl/portal/images/banners/newsletter-akademicki-zapis.jpg
||pulsmedycyny.pl/static/img/newsletter.jpg
||rabat-detal.pl/pliki_konkurs/box_newsletter.jpg
||ratownicy24.pl/wp-content/themes/naratunek/img/newsletter.jpg
||rynekzdrowia.pl/images/socialBox/mail-a.png
||salonydenon.pl/images/footer-newsletter.png
||salonydenon.pl/modules/tvcmssingleblock/views/img/newsletter
||solnemiasto.eu/wp-content/uploads/2014/08/newsletter.png
||static.parastorage.com/services/shoutout-get-subscriber/*/modules/widget/main.html
||szukam-ksiazki.pl/image/newsletter.png
||targiexpoproperty.pl/reklama-mini
||telewizja-cyfrowa.com/wp-content/uploads/2016/01/newsletter.png
||tomgast.pl/media/wysiwyg/baner_koszty_wysylik_newsletter2_prawy.jpg
||tygodnik-rolniczy.pl/static/tpr/images/newsletter.png
||upolujebooka.pl/_visual/_b/b_newsletter.jpg
||uslugiekosystemow.pl/wp-content/themes/ueko/img/ikona_newsletter.png
||wodociagi.katowice.pl/*/baner_newsletter.png
||www.eventim.pl/obj/media/PL-eventim/teaser//pl/marketingTeaser/newsletter-new-2016.jpg
||www.gofin.pl/images/newslettery_swl.png
||www.horecabc.pl/wp-content/uploads/HBC-grupa-na-FB2.jpg
||www.ksiegarnia.beck.pl/media/bannerslider//n/e/newsletter-sg.png$image
||www.pulshr.pl/images/newsletter/newsletter.png
||xiegarnia.pl/wp-content/themes/xiegarnia.pl-theme/assets/images/newsletter-label.png
||zadowolenie.pl/media/cache/*/zdw-newsletter-
||zooplus.pl/magazyn/wp-content/uploads/20*/*/*Newsletter_Promotion_$image
2max.pl###footer-container-first
4adstudio.pl,rudeiczarne.pl##.widget_mc4wp_form_widget
4kdownload.com##.footer__section > .footer__col--updates
4kom.pl##.newsletter-custom
4lapki.eu,annalovestravelspl.wordpress.com,infomiasto.eu,kulinarnamuza.wordpress.com,kwadranszpodkopem.com,podkop.com,pskrk.com,tabloidonline.blog,techno-senior.com,zabieganamama.com,zpamietnikabuntownika.wordpress.com##.jetpack_subscription_widget
4spaw.pl,bydgoszczak.pl,kaliszak.pl,katowiczak.pl,krakusik.pl,pro-jex.pl##.mini-newsletter
4trucks.pl##.sInfo > .m209.box
9c.com.pl##footer .col-md-auto.col-12
9design.pl##.top_newsletter
24hurt.pl##.row > .col-md-12
24kato.pl,24zaglebie.pl,bytomski.pl,chorzowski.pl,glivice.pl,ngs24.pl,nowinytyskie.pl,piekary.info,rudzianin.pl,tarnowskiegory.info,zabrzenews.pl##.invitation-newsletter
24kato.pl,24zaglebie.pl,bytomski.pl,chorzowski.pl,glivice.pl,ngs24.pl,nowinytyskie.pl,piekary.info,rudzianin.pl,tarnowskiegory.info,zabrzenews.pl##.logo-bar__right > form > .newsletter-form__input
24pr.pl##center > input, td:nth-of-type(2) > input, #carrington-subscribe > h3
50style.pl##.footer-item-wide
85.128.114.72,gkn.pl###lewa > .box_newsletter
99rent.pl###block-block-7
100pompek.pl,biegaj40minut.pl,miesniebrzucha.pl,miesnienog.pl,podciaganie.pl,treningaerobowy.pl,treningrozciagania.pl###freshmail-subscription-form
300gospodarka.pl,ccnews.pl,faktyozywnosci.pl,warzywapolowe.pl###custom_html-5
360studio.org,brykizameryki.pl##.nks_cc_trigger_tabs
365dowolnosci.pl###getall_widget-3
abc-zoosklep.pl,agrorami.pl,apia.pl,apte.pl,blizejciebie.pl,blog.kurasinski.com,bozecialo.info.pl,dealz.pl,dlabiura24.pl,dlahandlu.pl,drzwi-cal.pl,eatyx.com,esklep.brandvital.eu,eventory.cc,hbt.com.pl,hegos.eu,lou.pl,mazidla.com,mrdiy.com,mumla.pl,naukawpolsce.pl,nestor.com.pl,obuwiestyl.pl,pakomat.pl,rynekaptek.pl,rynekseniora.pl,rynekzdrowia.pl,sadyogrody.pl,skin79-sklep.pl,sklep.agroczesci.pl,sklep.dalimex.pl,studiohifi.pl,topsecret.pl,trzymajsiecieplo.pl,urbangames.pl,vichy.pl,vidaxl.pl,vivelo.pl,www.naszapraca.com,znak.com.pl,znomet.pl,zycierolnika.pl##.newsletter
abmax.eu,latarki.pl,multimaszyny.eu,shopsisters.eu###newsletter_block_left
ac.com.pl##.form-group
action.com##footer div[data-testid="newsletter-section"]
active.fibrain.pl##.newsletterWithFacebook
active.sklep.pl###footer_full .footer--social-block ~ div[class]:last-child
activejet.pl##.newsletterBanner
adapter.pl##.main-top-wrapper > .container > h2
addnature.pl,bikester.pl##.newsletterModule
addons.prestashop.com##.newsletter-subscribe
adequate.pl##.hidden-xs.col-sm-4.col-md-4.col-lg-4
adguard.com##.annoyance.email-collector
adidas.pl,reebok.pl##div[class^="footer_newsletter___"]
administrator24.info###bNewsl
adra.pl##.elementor-element-30e54b2
adwokat-gostkowski.pl###footer_news
aeg-powertools.eu##.aeg-newsletter-subscribe
aerowatch.pl,glycine.pl###bottom-newsletter-wrapper
agagrzelak.pl##.ps-emailsubscription-block
ageno.pl##.AgenoNewsletter
agnieszkakonieczna.com##.shortcode_newsletter .newsletter-inside div[class*="text"]
agnieszkawielobob.pl##.et_bloom_below_post
agriaffaires.pl###js-newsletterBlock
agrieko.pl##.footer_NewsletterBox
agrodoradca24.pl##.newsletter-online
agromat.pl##.column-double.content > .flex
agromr.eu,follynail.com,goldplants.eu,interlumen.com,ogrodzenia24.eu,www.e-hurtowo.eu##.ModulNewsletter
agroprofil.pl##.td-is-sticky.td-pb-span4.tdc-column.vc_column_container.wpb_column.tdi_185.vc_column
agrosimex.pl##.p0.tablet-column.col-sm-4.col-xs-12
agrosklad.com.pl,agrotuszyn.pl##.zostaw_numer
ahe.lodz.pl###company-newsletter-column
airstop.pl###snippet-newsletterSubscription-newsletterSubscription
ajk-opakowania.eu,linktransport.eu,mierzeja.com###newsletter
akademia-hotelarza.pl##div.col-xs-12.col-sm-12.col-md-5.col-lg-5:nth-of-type(3)
akademiawitalnosci.pl###text-2 > .textwidget, #text-2 > .title
akademicka.pl###footer-one #freshMailPopUp__background
akardo.pl,asport.pl,eherbata.pl,kaszubi.pl,wsb.edu.pl##.newsletter-column
aksiazka.pl##.stopkanewsletter
al.to,x-kom.pl###newsletterBox, .box-newsletterbf
alawar.pl##div.b-footer div.b-subscribe
albatros.pl##.alb-newsletter
albo24.pl##footer .call-to-action .card
aldi.pl##.mod-newsletter-popup
aldi.pl##.mod-newsletter-teaser
aldrux.pl,qdecor.pl##.box:nth-of-type(4)
ale.pl###newsletter_block_top
alebuty.com.pl###newsletter-wrap
aledobre.pl##.footerColumns > .row > div.col-sm-4.col-md-15:nth-of-type(6)
aleleki.pl##.footer_section_2 > div > .row > div:first-of-type
aleokulary.com###f_newsletters
alesoczewki.com##.newsletter_sec
alfasan.pl###nws
alibiuro.pl##.elementor-element-9b3b2b8
aliexpress.com###alert-subscribe-form
aligoo.pl###footer > .col-sm-6
aliholik.pl###yikes_easy_mc_widget-5
alkalicznystylzycia.com,konstantinkanin.com,littletownshoes.com,przedsiebiorcza.com##[id^="mc4wp_form_widget"].widget_mc4wp_form_widget
alkoholeswiata24.pl,proxer.com.pl,swiatzlotasklep.pl###box_subReqForm
alkoholeswiata.com##div.span6:nth-of-type(2) > .row > div.span3:nth-of-type(2) > .panel-default.panel
all-bielizna.pl###slide_panel187
almania.pl,glossyme.eu##.shb-newsletter-widget-1
alsen.pl,kakto.pl##.m-footer_nsl
alsen.pl,kakto.pl,vezzi.pl,wyspaszkrabow.pl##.box-newsletter-lp
aluprof.eu##.sidebar a[href="https://aluprof.eu/newsletter"]
amazone.pl##.col-md-offset-3.col-md-4.col-sm-6
amberexpo.pl##div.slide-out-div:nth-of-type(5) > .handle_fb
amc.waw.pl##.footer h3:nth-of-type(3)
amico.market###Newsletter
ammoffice.pl##.icon-mail2
amparts24.pl###i258
amrest.eu###block-simplenews-1
amso.pl###f_newsletter .f_form
amw.com.pl##.footer-top__newsletter.footer-top__box
analizy.pl##.footerFormWrapper
analizy.pl##.nl-wrapper
andrzejgrzyb.eu,todoandroid.es##.widget_newsletterwidget
andzela.com##.newsletter_block_right
anmur.eu##.mod-newsletter-2.newsletter
anna-urbanska.pl,londonshoes.pl###text-7
anna-urbanska.pl,moneygrabbing.co.uk##.ml-block-form
annapoplawska.pl##.newsletter_in_footer
anotherdesign.pl###nw
answear.com###bottomNewsletter
answear.com##.Newsletter__newsletterContainer__nF1vk
antyksobieski.pl###social a[href="/newsletter/add"]
antykwariatlibra.pl##.cms_newsletter_form
antyweb.pl##.email.btn-tools
apartamentywkarpaczu.eu##.site-footer__email
apetete.pl##.footer__block__payment.footer__block > .footer_container
apollo.pl##.newsletter-block-container
apptoyou.pl##.row.flex.bubble-r-container.CustomElement.bubble-element > .row.flex.bubble-r-container.Group.bubble-element > div.column.flex.bubble-r-container.Group.bubble-element:nth-of-type(2) > .column.flex.bubble-r-container.Group.bubble-element
apteka-niezapominajka.pl##.tnp-widget.tnp > a[href$="/Newsletter_akcept/"]
aptekaolmed.pl,drogeriaolmed.pl###footer > div:nth-child(2) > div:only-child > div:nth-child(1)
apteline.pl##.footer__connect-newsletter
arbiton.com,indigo-nails.com,korbo.eu,krasnik.eu##.newsletter-section
architektura.info###PopupSignupForm_0
archiup.com##footer#footer.footer > div:first-child > div > div > div:nth-child(4) > div:nth-child(2)
ardant.pl##.Newsletter_footer
artmuseum.pl##.follow > div
arystoteles.pl###dozapi
ashampoo.com###service_letter_form
asics.com##.footer > :nth-child(n+3):nth-child(-n+5)
asta24.pl##.columns.small-12.medium-6.large-3:nth-of-type(4)
astor.com.pl##.footer_4 .col-md-5.col-sm-6
astoreo.pl###newsletterFormgRecaptcha
astratex.pl###MailNewsForm
atakto.pl##.sidebar-newsletter-wrapper
atlastours.pl##div[style*="newsletter.png"]
atrakcjenaimprezy.pl,kom-ster.pl,mebline.co.uk,mebline.nl,mebline.pl##.moduletable_newsletter
atrexpress.com.pl##.nlsection
atrium-biala.pl,atrium-ch.pl,atrium-copernicus.pl,atrium-felicity.pl,atrium-gama.pl,atrium-kasztanowa.pl,atrium-koszalin.pl,atrium-molo.pl,atrium-mosty.pl,atrium-plejada.pl,atrium-reduta.pl,atrium-targowek.pl,promenada.com##section.pop-up > button.btn-pop-up[data-toggle="modal"]
atriumsystem.eu##.box-newsletter.box
attipas.pl##div.col-sm-6.col-md-3:nth-of-type(4) > .widget
auchan.pl##a[href="/newsletter/ref/box"]
auchanhetmanska.pl##.o-Footer-colNews > :nth-child(-n+2)
auchanhetmanska.pl##div[class*="trends" i] center div[style*="border"]
audio.com.pl##.sticky-newsletter
audiopolis.pl###mod_Newsletter
audytel.pl,eko-ue.pl##.fixed-newsletter
australiangoldshop.pl###formNewsletterFooter > div:nth-child(3)
austria.info##.sonata\.block\.service\.newsletter.u-section
autodoc.pl##.subscribe_us
autogaleria.pl##.col-lg-5.col-md-5.col-sm-6.col-xs-12
automatyka.pl###newsletterSideBox
autonaminuty.org##.elementor-widget-wp-widget-newsletterwidget
autopart.pl##.footer-top .form-cover
ava-kosmetyki.pl##footer .row > .py--gutter:first-child
avans.pl##.b-main_newsletter
avaro.pl##.smsapi-sidetitle
avlab.pl##.elementor-element-436a5fa, .elementor-element-beacb6d
awa24.pl##div[class^="stopka"] > div[class^="newsletter"]
azdoc.pl##div.col-md-6.p-4:nth-of-type(2)
azjatyckibazar.com##.site-footer__item-inner--newsletter
azzun.pl##.site-footer__ezine-hld
babyboom.pl##.zapisz-newsletter
babysensepolska.pl,sklep.sigma-max.pl,wierzynek.pl##.newsletter2-wrapper
bandi.pl###stopka_nwslt
bandi.pl##.stopka .jednatrzecia > .bloczek > strong
bankmillennium.pl###buttonSelectorChat
bankobranie.blogspot.com###topNewsletter
baramundi.pl##.footer-content-1 > .inner
barki-nicols.pl##.footer__navigation__newsletter-title, .footer__navigation__newsletter-text, .footer__navigation__newsletter-form
bartekwpodrozy.pl##.elementor-element-67c43fd
bartoszkrawczykdemczuk.pl###tve_editor
basenymineralne.pl##.foo-box-mid
baseuspolska.pl##.newsletter-home
bass-sklep.pl###box-5
batorygdynia.com.pl##footer .menu_bottom1.row > .a_right
bbhomeonline.pl##.footer_links_newsletter
beautysupply.pl###columns .freshmail-wrapper.row
bebeconcept.pl##.newsletter-widget-7
befado.pl##.kt_widget_newsletter
befado.pl,wnp.pl##.mail
beincrypto.pl##.footer-subscribe-form
bellemaison.pl##.em-newsletter
belmeb.pl##.newsletter_content
berlitz.com###max-newsletter__form
beslow.pl##.ulp-layer
bestbody.com.pl###footer-top
bestcena.pl##div[class^="newsletter-box"]
bestprezenty.pl###snippet-newsletter-newsletter
bezgluten.pl###footer > div:first-of-type > div:first-of-type
bezmiesnymiesny.pl,clover.net.pl,ovczarnia.pl,swiatobuwia.com,wearethecoffee.com##div[class^="shb-newsletter-widget"]
bezpieczenstwo.chorzow.eu##.newsletter.col-sm-12
bi1.pl##.home__newsletter
bi1.pl,e-sporting.pl,javappa.com,obserwatorfinansowy.pl,sephora.pl###newsletterForm
biblioteka.gliwice.pl###fm_form_2 > .form_container > .freshmail_form_2.form_subscribe
biblioteki.org##.sidebar > form
biedronka.pl##.ico-zapisz-newslletter
biedronka.pl##.newsletter-tile
biegambolubie.com.pl##.cp-info-bar-wrapper
bierhalle.pl###Mod89
bigstar.pl##.ma-home-newsletter
bigstar.pl##footer > section ma-accordion-item:nth-of-type(4)
bigstar.pl,politykazdrowotna.com###newsletter-section
bikeinn.com,dressinn.com,goalinn.com,kidinn.com,motardinn.com,outletinn.com,runnerinn.com,scubastore.com,smashinn.com,snowinn.com,swiminn.com,techinn.com,traininn.com,trekkinn.com,waveinn.com,xtremeinn.com##.footer-container__newsletter
bileteria-online.pl,pkspolonus.pl##.mode_newsletter
bilscy.info,ogrodniczy.com,sarenka.eu##.footer-newsletter-box
bioenergiadlaregionu.eu##.pa-newsletter
bioieko.pl,chinytolubie.pl,dietetycy.org.pl,effective-english.pl,miastons.pl,przewodnikmp.pl,socialpress.pl###fm_form_1
biolindo.pl,ecco-verde.pl##.footer_newsletter--form
bissole.pl##a[href="#newsletter"]
bit-info.pl##.newsletters_block
biurfan.pl###newsletter-wide
biuronet.com##.bottom-subscription-form
biuroprasowe.porta.com.pl###newsletter-story-page.newsletter-story_page
biuroprasowe.porta.com.pl##.newsletter-home_page
biurowezakupy24.pl,szkolnezakupy.pl###mod-newsletter
bizay.pl##div.col-xs-3 > .footer-sub-title
bizay.pl##div.col-xs-3 > .no-gutter.row
biznes-wprost-pl.cdn.ampproject.org,biznes.wprost.pl##.art-newsletter
biznes.gazetaprawna.pl,dziennik.pl,forsal.pl##.newsButton
blik.com,emaillabs.io##.newsletter-iframe
blip.pl###salesmanagoIframe
blip.pl,chcemybycrodzicami.pl##.front-newsletter
blog-daneosobowe.pl,ekorekta24.pl,labosport.pl,niezlasztuka.net,sprawyzdrowia.pl##.nksub_hidden .nks_cc_trigger_tabs
blog.gdaq.pl,doktorania.pl,faktyozywnosci.pl,haart.pl,kryptopomocnik.pl,magnapolonia.org,naukatolubie.pl,obserwatorlogistyczny.pl,ostatniatawerna.pl,refreszing.pl,stomatologianews.pl###custom_html-2
blog.mozilla.org,legal-base.co.uk,olesnica24.com,zamek-krolewski.pl###newsletter_form
blog.spotawheel.pl,oknarolety.com###subscribe-form
blogmtb.pl##.kalais-newsletter
bluecity.pl##.newsletter-short
bluerank.pl##.shown.exit
bmc-switzerland.pl##div.footer-nav-container:nth-of-type(4)
bmwsklep.pl##.subscribero
bochniaisol.pl,digi-tv.pl,podrozezantena.pl,satkurier.pl,solarkurier.pl###newsletterMsg
bodypak.pl###pts-newsletter
boguslaw.io##.formkit-sticky-bar
bold.net.pl##.fm-newsletter
bolix.pl##.homepage-newsletter-box
bombkisklep.com##.newsletter-inner
bonprix.pl##.nl-benefits.row
bonprix.pl##a[href="/serwis/newsletter"], .contrast.container-fluid > .container > .row > .col-xs-12.col-sm-6
bonvoyage.pl##.box_newsletter
booking.com##.emk_footer_update
booking.com##.newsletter_subscribe
borcas.eu##div.vc_col-sm-3.vc_column_container.wpb_column:nth-of-type(5)
born2be.pl##[href="/newsletter/sign-in"]
born86.pl##.nadstopa2
borniak.pl##.mgz-element-newsletter_form
bosch-professional.com##.m-newsletter_signup-a
braclowiecka.pl##div.widget:nth-of-type(3)
bravebeaver.pl,semprewithlove.pl,smartbake.pl###text-5
brita.pl##.validation.form-group
brownells.pl##.ic-popupLinkNewsletter
brw.com.pl,brw.pl##.blok-newsletter
brymorex.pl,sklep.enger.pl##.newsletter-ui
brytyjka.pl###gsNewsbox
bto.pl###StopkaAktywnaNewsletter
budujemydom.pl###newsBoxLeft
budujemydom.pl,czasnawnetrze.pl,zielonyogrodek.pl###newsletterBoxLeft
bulldogjob.pl##.spop-container
busiarze.com.pl###alo-easymail-widget-3
business.link###Form_SubscribeForm
businessinsider.com.pl##.article_newsletter
businesstraveller.pl##.widget:nth-of-type(2) > h4
buslapidus.pl,pasja-informatyki.pl##.widget_1
butybuty.pl,delis.pl,diamir.sklep.pl,telefony-gdansk.pl,wetro.pl##div.col-md-3.col-sm-6.col-xs-12.col-xxs:nth-of-type(4)
butyjana.pl##.bjNewsletterText
butyraj.pl##.hidden-phone.top_toplayer
bydgoszcz.com,ct.jaworzno.pl,damitv.pl,echotygodnik.info,kociewiak.pl,narew.info,pzl24.pl,telewizjazary.pl,tvobiektyw.pl,tvsudecka.pl,tvswinoujscie.pl##div.sm-text-center.mb15.col-sm-6:first-of-type
byinsomnia.com,mniammniam.com,opakowania24.eu,pl,r-gol.com,rylko.com,stoprocent.com,unisono.eu##.newsletter-container
bytom.com.pl##[translate="main.footer.newsletter.header"]
c-and-a.com##.footer__mail-form
c-and-a.com##.util-visible-sm.util-add-margin-bottom-full.row
cafago.com,tomtop.com##.m_subscribe_input
cafessima.pl###block-23
calisia.pl##footer .container > .row > div:nth-of-type(4)
canon.pl##.pl-bg--gray-lightest.pl-bg.pl-spacer--in--medium.pl-spacer--cut-h.pl-spacer--cut-bottom.pl-spacer.pl-anchor-tabs--section
caritaspoznan.pl##.subReqArea.contentItem
carpetvista.pl##.g-padTstd.r-5cols.std > div.r-colspan1.r-col:nth-of-type(4)
carrefour.pl##.push-newsletter
carry.pl,tani-laptop.com###block_newsletter
cashless.pl###footer footer > div > div:nth-child(5)
cashless.pl#?#header ~ div.container > div:-abp-has(> h2 ~ div.text-newsletter)
castorama.pl###newsletterLabel
castorama.pl##.newsletter-fold
cba.pl##.links > div > div:nth-of-type(4)
ccpartners.pl##.nl
cebit.pl##a[href="http://net.cebit.pl/newsletter/"]
centos.com.pl##form:first-of-type
centrum-terapii.pl###sml_subscribe_widget
centrumdialogu.com##.clearfix.bd-no-margins.hidden-xs.bd-layoutbox-9
centrumhandlowerobi.pl##.footer-container div.col-xxs:nth-of-type(4)
centruminformacji.tvp.pl##.extraInfoNews
centrumpapieru.pl##.cp_footer__newsletter
centrumprasowe.pap.pl##a[href="/cp/pl/newsletter/"]
centrumrolnictwa.pl##.elementor-element-2870e1a8
centrumxp.pl##.foot-nav__right
cersanit.com.pl###footer-page .js-medium-col-1.medium-4.small-6.columns
cezal.lublin.pl###footgroup3
cezar.eu##.container > div.col50.kolumna:nth-of-type(2)
cgm.pl,forsal.pl,horsklep.pl,sklep.olekmotocykle.pl##.footerNewsletter
channel9.msdn.com##.mouseClick.mediumIcon.email
chatapolska.pl##.yellow-bg.no-padding.col-xs-12
chataskrzata.eu,genesis-zone.com,otwarte.eu##:not(#newsletter-overlay) #newsletter-box
chcemybycrodzicami.pl##.single-post-newsletter-wrap
checiny.pl###div_newsletter
chillglobal.pl###tmpl-content-sortable_1196
chlodnictwoiklimatyzacja.pl###left-in > .moduletable:first-of-type
chlonne24.pl##.grwf2-wrapper
chocholowskietermy.pl##.wdform_section
chocolissimo.pl##a[href="javascript:showNewsletterLayer();"]
chodnikliteracki.pl##a[href*="/newsletter/"] > img[src$="/newsletter.png"]
choinkowo.pl##.shb-newsletter-widget-5
cholewinski.com##.cho-subscribe
ciara.pl##.col-md-4.col-sm-12.col-xs-12.footer-widgets-area.footer-widgets-area-4
ciekawostkihistoryczne.pl##.footer-fixed
citroen.pl##.column_50.columns:first-of-type
cityboard.pl,euh-e.edu.pl###sp-bottom3
ckmuza.eu###wysija-3
ckr.pl##.sliding-newsletter
ckzamek.pl##.footer__newsletter-btn
claresa.pl###box_custom75
claudia.pl##.text-center.sidebar-box
clevo-computer.com##.column--newsletter
clinic4car.pl###add_to_newslettter_form
clinic4car.pl##footer .row > div:first-child
cobi.pl##.block-DefaultSubskrypcja
coccodrillo.eu###homeNewsletter, .newsletterWrap
codojedzenia.pl,pushpushgo.com##.newsletter-post
coffeedesk.pl##.footer-widgets .footer-sidebars .text-2
commonvoice.mozilla.org##.subscribe-newsletter
company.pl##div.mx-auto.col-md:nth-of-type(2)
comparic.pl,wiskitki.org###icegram_messages_container
competitiveskills.com##.sc_contact_bg_color.sc_section_overlay
comtrade.pl,topfish.pl##.n56467_container
confero.pl##.confero_newsletter_form
consumer.huawei.com##.title + .subscribe
controlling.info.pl##.newletter
corona-fishing.pl###glowna-newsletter
cortland.pl##.letter
costa.pl###wrapper-newsletter
cottonina.pl##.in-viewport.t-alt.relative
cozaile.pl##.c-guide-newsletter
crocs.pl##.footer-email-signup
crolove.pl##div.footer-container .widget_mc4wp_form_widget.widget
cryptoprofit.pl##.widget_mo_optin_widgets, a[href="http://cryptoprofit.pl/newsletter/"]
crystal-albums.pl,monikahonory.pl,wielkishoe.com##.ml-subscribe-form.ml-form-embedContainer
ctek-ladowarki.pl###bestnewsletterbg
ctpartners.pl##.ftresc2
cudmoda.pl##.ps-emailsubscription-block > :nth-child(-n+2)
cumulus.pl,lan.sklep.pl,um.jaslo.pl##.Newsletter
cyberdefence24.pl,defence24.pl,energetyka24.com,infosecurity24.pl,space24.pl##.header-bottom-newsletter
cybsecurity.org,duzekubki.pl###mc4wp_form_widget-2
cybsecurity.org,itcontent.eu##[id^="mc4wp-form"].mc4wp-form
cyfrowynauczyciel.pl###mab-widget-2
cyfrowyszpital.pl##.widget-area > .theiaStickySidebar > div:nth-of-type(3):nth-child(4)
czajnikowy.com.pl##footer .banner:has(.tnp-subscription)
czasdzieci.pl###id_boxNews
czasfinansow.pl##.site-footer > .row > div:nth-of-type(3)
czasnawnetrze.pl###contentRight > div.module:nth-of-type(4)
czasnawnetrze.pl##div[id^="menu"][class^="menu"] > div[class^="newsletter-"], div[id^="menu"][class^="menu"] > div[class^="newsletter-"] + .menu-left-border
czaszabawy.pl,sklep.charaktery.eu,sklep.psychologia.eu,smieszneprezenty.com.pl###skNewsletterPopupFooter
czechtourism.com##.newsletter.pageSeparator, .newsletterSubscription
czerwionka-leszczyny.pl##.row > div.col-sm-3:nth-of-type(2)
czesciauto24.pl##.footer-subscr
czescirolnicze.eu,shop.techmot.com.pl###newsletterPanel
czosnow.pl,fotelik.info,petanque.pl##.subskrypcja
czytamyetykiety.pl##.footer-ebook.component
czyztak.pl##.footer > div.row > .columns > h2.dot-header
dachyb2b.pl,instalacjeb2b.pl,oknaidrzwib2b.pl,przegrodyb2b.pl,wykanczanieb2b.pl###mailing
dadelo.pl##.col-xs-1.col-s-1.col-md-2.col-xl-4:nth-of-type(4) > .item
daemon-tools.cc###send-mail
dagmara.pl###links_footer_3
dajar.pl##div.css-770vd2:nth-of-type(12)
danko.pl##.nl-holder
darymex.pl##.wce_footerinfo
deccoria.pl##.dc-action-regiser-newsletter
decoliving.pl,intymna.pl,ohso.pl##div.zwin.col-sm-3.footer-links.footer-widget:nth-of-type(3)
defence24.pl,infosecurity24.pl,space24.pl##.newsletter-module__inner
dekea.pl##div.mb40.mt40.row:nth-of-type(5) > .bg-grey.p20.col-md-4
delphiautoparts.com##form .subscribe-form
demagog.org.pl##footer .dg-newsletter
demagog.org.pl##section .column .dg-newsletter
deon.pl###region4 > .clear:nth-of-type(6), #region12 > .clear:first-of-type
deon.pl##.footer-right__newsletter
deon.pl##.sl > li:nth-of-type(5)
designconcept.pl###nl-popup, #Blok-3
devcode.pl##.et_bloom_optin
device.pl##.subscribe-to-newsletter
deviceranking.pl##.subscr-widget
devmentor.pl##.mailerlite-form
devstyle.pl###post-2135 > .ck_inline.ck_form_container
devstyle.pl##li.widget_text.col-4.widget:nth-of-type(3)
deweloper-interes.pl,niebieskimigdal.pl###text-2
dewocjonalia-niedziela.pl###footer_boxs > li:nth-of-type(4)
dexpol.com##.stopka2_center > div.box_info:first-of-type
di.com.pl##.footcol:nth-of-type(5) > form, .footcol:nth-of-type(5) > p, .footcol:nth-of-type(5) > .footnag:first-of-type
diag.pl##.diag-newsletter
diag.pl##.last > form, .last.col-md-3 > h3
dialog.mazovia.pl,galeriabronowice.pl##.news
diamante-wear.com##.footer__blocks__item--newsletter
digikids.pl##.vc_col-sm-3.vc_column_container.wpb_column:nth-of-type(3)
dimedic.eu,listymikolaja.pl##.r-newsletter
direct-sender.com###section-8 > .container > .row > div.col-lg-6:first-of-type
dji-ars.pl###newsletter-bottom-banner
dlabystrzakow.pl##.footer-form-newsletter
dlh.pl##.footer_left_newsletter
dobiegania.pl##.superMailing
dobrarelacja.pl##.elementor-element-783e75a2
dobredomy.pl###footerForm
dobremiejsce.org##.popupaoc-button
dobreprogramy.pl###phContent_SubscriptionsControl_lnkNewsletter
dobry-kon.pl##.col-sm-3:nth-of-type(4)
dobrzemieszkaj.pl##.box-22
dojczland.info##.mo-has-email.mo-optin-form-bar.moOptinForm
dojczland.info##.widget_mailerlite_widget
dolinski.pl##div.ty-grid.span8:first-of-type
domar.pl##.footer-newsletter__section
domena.pl##.section-newsletter-front div[class*="green"]
dominospizza.pl##.m-Newsletter__formContainer
domisad.pl###wrap-newsletter
domix-agro.pl,emulus.pl,maleomi.pl,manufakturastylu.pl,omasz.pl,smartserwis24.pl,zygzaksnow.pl###blocknewsletter
domjozefa.tv##.widget_wysija.footer-widget.widget.col-sm-3.col-md-3
domnowoczesny.com##.sticked-newsletter
domodi.pl##.dm-box--newsletter, .dm-footer-newsletter
domodi.pl##.dm-footer-content .dm-2of3.dm-gcf__item.dm-footer-section
domodi.pl##.dml-footer-newsletter
dompi.website.pl,e-stargard.pl,ogloszenia24.info,ombre.pl###newsletter_section
dopestore.pl,jedzpij.pl##.bottom-footer
dorotafilipiuk.pl##.footer > .container > div.row:first-child > div:nth-child(2)
douglas.pl##.newsletter-confirmation__wrapper
douglas.pl##.rd__footer__block--newsletter
doz.pl##.footer__top
doz.pl##.newsletter div[class*="title"]
dpcraft.pl##.newsletter_popup.module
dpn.pl##.column-right > div.box:nth-of-type(2)
dre.pl##.main__col--newsletter
dressler.com.pl###features > div > div:first-of-type
drewno.pl###nl_sticky
drmaxdrogeria.pl##.subscription-wrapper
drogeriausa.pl###newsletter_el
drogerienatura.pl##img[src*="/subscribe/bg.jpg"]
drogerienatura.pl,zakamarki.pl###newsletter-validate-detail
drogeriepolskie.pl##.footer-newsletter-area
drogerium.pl##.newsletterek
drogowskazykariery.pl##.module_column_5-11-3.module_column_3.tb_5_column.module_column.last.col4-1.tb-column
dronexpert.eu##div.BoxRwdUkryj:nth-of-type(8)
duka.com##.section-newsletter
duka.com,lot.com##.is-newsletter
dulux.pl###block-flourish-newsletter-subscription-flourish-newsletter-subscription
dystronet.pl##.post > #gr-form
dziennik.pl,forsal.pl,gazetaprawna.pl##.footerNewsletterContent
dziennikprawny.pl##footer > div.container > div.row > div[class]:nth-of-type(3)
dziennikzbrojny.pl##.columns.four
dziewczynynapolitechniki.pl##.col-sm-3:nth-of-type(3)
e-clarena.eu###zapisz_newsletter_box
e-hak24.pl##.column_last, .newsback
e-hotelarz.pl##div.row:nth-of-type(14) > div.col-lg-4.col-md-4.col-sm-12.col-xs-12:nth-of-type(3)
e-hotelarz.pl##form[onsubmit*="pwsSprawdzStronaGlownaBiuletyn"]
e-insportline.pl##.lastbox
e-irwin.pl##.footer .row > div:nth-of-type(4)
e-kidsplanet.com###newsletterBanner > div
e-konkursy.info,wittchen.com##.widget-newsletter
e-korepetycje.net##.offer-sidebar-banner
e-kwiaty.pl##.mnewsletter
e-melissa.pl##astro-island[props*='"newsletter"']
e-militaria.pl##.st_news_letter
e-pies.eu###m_footer_newsletter
e-pies.eu###m_footer_newsletter#mc-embedded-subscribe-form
e-prawnik.pl##.boxA2
e-sas.pl###fbbok
e-security.com.pl###footerTopPasek
e-spar.com.pl##.action-boxes-home div[class*="action-boxes-hom"]:has(> .inner #newsletter-form)
e-spar.com.pl##.icon-xl.icon-envelope-white.spar-icon ~ *, .icon-xl.icon-envelope-white.spar-icon
e-warzywnictwo.pl##.stopka-newsletter-kontener
ebroker.pl###ft_t_in
ebuciki.com###fnews
ecco-verde.pl,vobis.pl##.b-newsletter
echomedia.info##footer > div > div > div > div > div:nth-of-type(3)
eco.ovhcloud.com###block-newsletterfooter
eco.ovhcloud.com##.ods-footer__menu__item__title:has(+ div #block-newsletterfooter)
ecospa.pl,eszkola24.pl##.news-letter
ecr.pl###sidebar > #mc_signup
ecr.pl###sidebar > h3:nth-of-type(2)
ecr.pl##.footer-content > div.tt-column.one_third:nth-of-type(2)
edbak.com##div.columns.large-6.medium-6
edgecam.pl##.Columns3_4 > .custompod.FeaturePod > .pod-box
edgecam.pl##.Columns3_4 > .custompod.FeaturePod > p
edrone.me###newsletter-form-bottom
eduksiazka.pl###newsletter-subscribe-block, .getintouch.col-xs-12.col-sm-3 > h3
edulider.pl###block-mailchimp-signup-mailchimp
edunews.pl##.moduleacy-email
edutorial.pl###sendpress-widget-6
edziecko.pl,ladnydom.pl,myfitness.pl,ugotuj.to,wyborcza.biz##.nlt
eelsner24.eu,kupzegarek.com,sklep.platinet.pl,sorbenty.pl##.footer_nls
efashionstudio.pl##footer > .top > .container
egarden.pl##.newsletter-foot
egospodarka.pl##.ego-ico3, .ego-newsletter
ekodrogeria.pl##.wrap-newsletter :is(.newsletter-box, .newsletter-form)
ekoj.pl###newsletterbar
ekomercyjnie.pl##.clearfix.main-menu > li:first-of-type, .home-newsletter, .blog-newsletter, #bottom-newsletter
ekopaka.pl,naszogrodniczy.pl,sklep-agroland.pl,zakreconysloik.com.pl##.wce_footerinfo > .wce.overlay > li > ul > li:nth-of-type(5)
eksiazki.az.pl##.subscribe > p, .subscribe > h2, .feedburner
ekskluzywnymenel.com##.marlene-widget-newsletter
eksperymentalnie.com,pozdrozkrld.com##.widget_mailchimpsf_widget
eksperymentalnie.com,totalnareklama.pl##.widget_getresponse-widget.widget
eldomagd.eu##.pro-footer-newsletter
elektroguru.com##.footer-main__box--newsletter
elektromeks.pl##.newsletter_stopka
elektronik-service.com.pl###form_newsletter_down
elektroniksc.com.pl##.tpl-newsletter-form-widget
elektrostymulatory.net###newsletter-fm
elektrykapradnietyka.com##a[href="http://elektrykapradnietyka.com/newsletter/"]
elle.pl,portalzp.pl##.bottom-newsletter
elnino-parfum.pl##.Subscribe > .Container
eloblog.pl##a[href="https://eloblog.pl/newsletter/"]
eltrox.pl##.footer > div:first-of-type
emedyczny.com,pb.pl,pro-skippers.com,sklep-wadima.pl###NewsletterBox
emocje.pro###bloomwidget-3
emp-shop.pl##.mb-sp-2.mb-1.order-md-12.order-8.d-flex.open-md.col-md.col-12
empik.com##.footerNewsletter__form-wrap
empik.com##.newsletter-registration__banner.newsletter-registration
enerad.pl###g1-prefooter-widget-area > .g1-grid > .g1-one-fourth.g1-column:nth-of-type(3)
englishcollege.pl##.menudol > .calosc > #kontakt
enova.pl##.ipb-newsletter-form, .ipb-newsletter-info
eofficemedia.pl,fairbee.pl###tab_newsletter
epicdrama.pl##.epic-footer-nav > .row > .col-md-6
epoznan.pl##a[href="about-newsletter"]
equishop.com###newsletter_block_footer > div.content:nth-of-type(2) > h3, #newsletter_block_footer > div.content:nth-of-type(2) > h3 + div
erp-view.pl###top-mod
esaliens.pl##.news-btn.aside-btn
escoli.pl##.no-left-padding.col-sm-6 > .footer-block-title, [id^="newsletter-validate-detail"]
eskk.pl###footer-up > .container > div.col-xs-12.col-md-4:nth-of-type(3) > h4
eskk.pl###main-container-newsletter
esklep.agroas.pl##.newsletter-homepage-ui
esklep.niewiescin.pl##footer > #widgets > .container > div.widget:last-child
esklep.poczta-polska.pl###footer > div:nth-of-type(3)
esprit.com.pl##.newsletter-gora
espritshop.pl###newsletter-registration-form
esselte.com##.abc-footer__newsletter
esselte.com##div.span6:nth-of-type(2)
essilor.pl##.Footer-col--contact.Footer-col > .Footer-title--head.Footer-title
estante.pl###block-5 > .mailpoet_form
estella-shop.eu##.pxl-footer-container .pxl-newsletter > div > div:first-of-type > *
estradaistudio.pl###subscribe-newsletter
eszyneczka.pl###block_4 > #down > .container > .row > div:nth-of-type(5)
et.com.pl##.column > #be
etam.pl##.footer_nsw
etsy.com##.not-signed-in.subscribe-form
etuo.pl##.footer__col--join-newsletter
etuo.pl##section.sec--home.sec li.list__item > a[href="https://www.etuo.pl/newsletter"]
eu.dlink.com##.newsletter-sign-up__container.container
eura7.com,pl.malwarebytes.com###newsletter-signup
eura-tech.eu##.foo-newsletter
euractiv.pl##.row > pnespwidget
euroelectronics.pl##.site-footer > div > .grid > div[class*="footer__item"].grid__item:nth-child(6) > div
euroogrod.com.pl##.menu_newsletter_text
europacentralna.eu,sare.pl##.nlblock
eveline.pl##.subscribe-to-news
evenea.pl###subscribe-section
evertiq.pl##.register.index.news
evertourist.com##.newsletter_wrapper
evertourist.com##div.col-md-6.col-xs-12
ewakacje.pl##footer div.classPageGenerator_default_container:nth-of-type(2) > .classPageGenerator_default_bottom_box1
expondo.pl##.footer--newsletter-wrapper
express.pl##.footerBanner_el-newsletter
expresspaslek.pl,slowopodlasia.pl##footer > div > div:first-child > div > div > div:last-child
eyeforfashion.pl,renee.pl##.newsletter__section
fabrykazabawek.eu##.col-md-3.trzecia
faceandlook.pl##.newsletter-right-block
faceoffice.pl##div.col-md-12.col-sm-24:nth-of-type(2) > .row > div.col-md-12.col-sm-12:nth-of-type(2)
fachowydekarz.pl##div.textWidget:nth-of-type(7)
fajne.life##.post div[class*="form"][data-success_action_details]
fajowo.eu###footer.row > div[class*="col"]:first-of-type
faktyozywnosci.pl##.column-first.vmag-footer-widget
fanbook.store##.abs-newsletter-panel
fandroid.com.pl##.manohara-mailchimp--aligned-center, .widget-incredibbble-mailchimp-form
farbykabe.pl##.newsletter_head, .newsletter_text
fasardi.com,revouninstaller.com##.subscribe
fashyas.com,kolekcjonerki.com##footer div:nth-of-type(3)
fc-moto.de##.NewsletterBox, .NewsletterBox + div
felixcom.net##.ftop > .container > .right
feniks.wroc.pl##.newsletter-wr
festool.pl##.newsletter__footer
fielmann.pl##div[data-cy="newsletter-"]
finereader.pl##footer > .container-fluid > .container > .row > div:first-of-type > .text-white:nth-of-type(2)
finereader.pl##footer > .container-fluid > .container > .row > div:first-of-type > .textwidget:nth-of-type(3)
fish24.pl##.newsletter_foot
fizjoplaner.pl##.ft_nl
flies-stepbystep.com###widget-7
florexpol.eu##.section--newsletter
floribunda.pl###footer div.item:nth-of-type(4)
flovery.pl###footgroup-newsletter
foodarea.pl##.widget_custom_html
foodarea.pl##div.has-background.alignfull.wp-block-group:nth-of-type(6)
foodex24.pl##.layout__footer form[id*="subscribe-form"][action*="foodex24.pl/subscribe/send"]
foodfakty.pl###slideCardNews
foodsbrothers.pl##.type_instagram.footer__top > div > .container > .row > div:nth-child(4) > aside > div > :not(:last-child)
foodsbrothers.pl##.type_instagram.footer__top > div > .container > .row > div:nth-child(4) > aside > h3
foodsbyann.com##.custom_footer__box--left.custom_footer__box
foodyas.com##footer > div > .row > div.col-lg-4:nth-of-type(3)
forbot.pl###powiadomieniaMailowe
foreo.com###block-subscriptionblock
forsal.pl##div > a[href="http://forsal.pl/newsletter"], .forsalHeaderLinks > .col-sm-off.col-xs-off:first-of-type
forum-ekonomiczne.pl##footer div.col-lg-3.column_parent:nth-of-type(3)
forum.android.com.pl##[data-blockid="app_core_newsletter_newsletter"]
forum.budujemydom.pl##.index-newsletter
forum.shinden.pl##.styliumFooterFourthCol
foto.auchan.pl##.cw_newsletter, .sidebar-link[href="http://www.foto.auchan.pl/newsletter.html"]
fotografwdrodze.pl##.sidebar > div.widget_text.widget:nth-of-type(4)
fotokoszyk.pl##.follow_news:nth-of-type(4)
fotopanorama.pl##.newsletter-group, #social > a[href="/newsletter/add"]
franczyzainfo.pl##footer > .container > div:first-child > .footer-box > .footer-form
frenchtouchlabellevie.pl##.newsletter-mail
fresh-market.pl###kolp > .ramka.box_p
fresh-market.pl###kolp > h4
freshmail.pl##.newsletter-shortcode-form
fritzbox.com.pl##.nslt
fundacjadominikana.org###bottom.row-fluid > #sp-bottom6
fundacjajoannyradziwill.pl###custom_html-4 .custom-html-widget.textwidget > h4.widget-title:first-of-type
fundacjajoannyradziwill.pl###custom_html-4 a[href="//fundacjajoannyradziwill.pl/#newsletter"]
fundacjawolnosci.org###email-subscription
funnycase.pl###footer-top-newsletter
gajusz.org.pl###bg-koperta
galeria-warminska.pl##.nwsltr.box
galeriakatowicka.eu##.footer-cta__newsletter
galeriakatowicka.eu##.metka
galeriakazimierz.pl###newsletterSignUp
galerialucznik.pl###top-footer div.lucznik-top-footer-element:first-of-type
galeriapolnocna.pl##.footer-right > .newsletter-top
galileos.pl,sportplus.pl##.KolumnaNewsletter
gamedot.pl##.footer-top-container-item:nth-of-type(4)
gardenguru.pl##footer div.links:nth-child(5) > div > p
gastro-pol.pl##li:nth-of-type(8) > form, ul:nth-of-type(2) > li:nth-of-type(7)
gazetamiedzyszkolna.pl,konstytucjabiznesu.biz,wroclawskiejedzenie.pl###blog_subscription-2
gazetapowiatowa.pl###wysija-7
gazetapraca.pl##.col-md-4:nth-of-type(14)
gazetaprawna.pl,ikomunikaty.pl##.footerNewsletterContent label, .footerNewsL
gazetawielicka.pl###text-35
gazetkonosz.pl##.box:nth-of-type(2)
gbsbank.pl##.newsletterFooter
gdanskstrefa.com###blog_subscription-3
gdzietymrazem.pl##.td-pb-span4:first-of-type > .widget_text.widget.td_block_template_1
gdzietymrazem.pl##.widget_custom_html.widget.td_block_template_1.widget_text:nth-of-type(2) > .custom-html-widget.textwidget
geekbuying.pl,lightingcenter.pl,perfumeriatop10.pl,toys4boys.pl###newsletter_block_home
geekwork.pl###newsletter-head
gemini.pl##div[class*="12"] > section[class*="12"][style*="background"]:has(> div > div > header ~ div #newsletter_form)
germany.travel###footer_inner_wrapper > div:first-of-type > .list-inline > li:nth-of-type(9), li.divider:nth-of-type(10)
getmailbird.com,roshen.com##.footer-subscribe
gettinenglish.com###easy-opt-in-widget-2, .sh-s11.sh-t6.section-heading > .h-text
giacomo-design.com##.newsletter.cell.large-3 > h3, .newsletter.cell.large-3 > div > .es_shortcode_form.es_subscription_form
gieksainfo.pl##div.menu-wide:nth-of-type(3) > h2:first-of-type
gieksainfo.pl##div.textwidget:nth-of-type(2)
ginlong.com##.pc-rss2
gino-rossi.com##.footer .top > ul > li:nth-of-type(2)
girya.com.pl##div.copy.container-fluid:nth-of-type(2) > .container > div.text-center.col-xs-12.col-md-6:first-of-type
gliwice.eu,ukrainashop.com##.newsletter_wrap
global4net.com##.footer-grid-el2.col-xl-6.col-12
gloria24.pl##.tg-info-cookie
gminabiskupiec.pl,swietokrzyskisztetl.pl##ul[class*="menu"] li[id*="menu"] .subskrypcja
go-market.pl###newsletter-info
gofin.pl##img[src="https://www.gofin.pl/images/newslettery_gofin_dzial.png"]
goldbroker.pl,kurasinski.com,piroart.eu##.home-newsletter
gomobi.pl##.zapiszsiedonewslettera
goodram.com##footer > div > .row > .col:last-child
gorlice.pl##.sdbar-newsletter-cont
gorno.pl##.stopka-info > .blok > div.szerokosc-14.kolumna:nth-of-type(4)
gosc.pl##.Col0.LayoutColumn.c1 > .wp-el.webpart-wrap-layout_column.wp-bd > .wp-el.webpart-wrap-links.wp-bd
goscinnygaj.pl##.center-block.row > .col-md-3:nth-of-type(2)
goshico.com##.newsletter-block_dark
gospodarkamorska.pl###newsletter-bx
gospodarz.pl###bucia > div:nth-of-type(2)
gospodarz.pl##div.footer_menu.col-sm-12.col-md-3.col-lg-3:nth-of-type(4)
gospodarz.tv##.cp-sidebar > .widget-form.widget
gowork.pl##.company__subscribe
gowork.pl##.notification-popover
grafmag.pl##.footer__notify_newsletter
gramwzielone.pl##.hidden-xs.hidden-sm.col-md-12
grawerowanie.org.pl##.signup
green-news.pl###footer .order-first:has(> form[action="/newsletter"])
green-news.pl##.container > .container:has(> h2 ~ div form[action="/newsletter"])
greencell.global##.nl-footer-container
greenfelix.eu##.footer-container div[class]:nth-of-type(4)
grene.pl###pollSlider-button
grillmix.pl##.col-sm-3:nth-of-type(5)
grobonet.com##.footer-right-site form
gromar.eu,languagetool.org###footer
grono.pl###Mod104
grupaimage.eu##.sidebar-left > div.sidebar-box:nth-of-type(2)
gs1pl.org###section-newsletter
gtbicycles.pl###mailinglist_container
hackintosh.com.pl,ustka.travel##.mailchimp
haczykowo.pl,kopalniasrebra.com,sklep.miodyapis.pl,sklep.wzso.pl,texasclub.pl##.newsletter1-wrapper
hairstore.pl###stopka_newsletter
handluj.com###footer_top > .container > .row > div:first-of-type
hanet.com.pl##.wce_newsletter
happyenergy.pl##.sectionNewsletter
harmadon.pl,trans.info##.newsletter-popup
hart.pl,herki.pl###_ctl0_NewsLetterInitC_NewsletterForm
hello-body.pl,medestetis.pl,wei.org.pl###custom_html-3
hermessk.pl###sliding_box_submit1
hirschmann.pl##.subscribe-line
histmag.org###calculatedSocials > a[href*="#newsletter"]
histmag.org##.css-nil > a[href="https://old.histmag.org/#registerlink"]
histografy.pl###wysija-2
hoegert.com##.moduletable
home.pl###nlForm
homeoffice360.pl###footerColumn2 > h3:nth-of-type(2), #newsletterForm
homla.com.pl##.multichannel-newsletter
honia.pl,niebieskimigdal.pl##.widget_mc4wp_form_widget.widget
horecabc.pl##.et_pb_image > a[href="https://www.horecabc.pl/newsletter/"]
horecatrends.pl##.dif-2.box-11
horex.pl##.newsletter__input
hostovita.pl##.newsletter-signups-dialog
hotel.odr.net.pl##.ml-subscribe-form
hoteladler.com##.span4.moduletable:nth-of-type(3)
hotelcenturia.pl,kakadu.pl###newsletter_btn
hotelkrynica.eu##.module-footer-newsletter
hotmed.pl###tm-bottom-c > div:nth-of-type(3) > .uk-panel
housebrand.com##.containerNl
housebrand.com##.footer-newsletter-form
hoyavision.com##.footer__subscribe
humint.pl##.widget_custom_html.widget-footer.widget-default.widget.widget_text
hurtownia-format.pl##.footer.row > .col-md-4
hurtownia-spozywcza.pl###accordion_footer > div.list-group.foot-group:nth-of-type(4)
hurtowniabartel.pl###dor_custom_newsletter_block
hurtowniarolnicza.pl##.customWrap > span, .customWrap > form
hurtowniasportowa.net##footer > .aboutUs > div > div > div > div > div:first-of-type
hurtowniateleinformatyczna.pl##ul:nth-of-type(3), .rc-box-newsletter.box
hydro.com.pl,mebline.ie##.newsletter-bg
hygieia.pl##.footer-info div.grid_3:nth-of-type(3) > div.grid_3
hykker.com##.widget_wysija
hyperxgaming.com###email-signup-modal, .s-footer__email
iautomatyka.pl##div.pfwidgetinner:nth-of-type(6), div.h2_belka:nth-of-type(5), #pf-footer-row > .pf-row > .mpc-column.col-md-3.col-lg-3.wpb_column:nth-of-type(2), .mailster-form
ibrpolska.pl##.panel.widget-first.widget-1
ichi.pro##a[href*="eepurl.com/"]
idream.pl##.main-newsletter
igimag.pl###freshMailPopUp__background
imperiumromanum.edu.pl##div.wpb_raw_html.wpb_content_element.wpb_raw_code:nth-of-type(2)
inexbuy.pl##.us-foooter-subscribe-row
infoair.pl,infobike.pl,infobus.pl,inforail.pl,infoship.pl,infotram.pl,transinfo.pl##div.right_content_box:nth-of-type(4)
infobeskidy.eu,starysacz.info###NewsletterForm
inpostpay.pl##.newsletterBar
insert.com.pl##li:nth-of-type(2) > .info-channel
instalki.pl###Mod286 > div > div > div
instytutoka.pl##.Footer__nav > div > div:last-child
interaktywnie.com###rightContainer > div:nth-of-type(3)
interaktywnie.com###wrapper > .grid_5 > div.categoryBox:nth-of-type(5)
interaktywnie.com##.all-demo > a[href="https://interaktywnie.com/rejestracja"]
interferie.pl##.newsl, #footNL, #newsletterBtn
internetmatters.org##footer .last > div:nth-child(5)
intexpc.pl##.newsletter-form-wrapper
intimissimi.com##.border-right.footer-box.align-center-middle.grid-x.large-5.cell
inzynier-medyczny.pl###sidebar #fm_form_1
inzynierbudownictwa.pl##.subscribewidget
ip-sa.pl###PageLeft_ContentPlaceHolder_PageLeft_NewsTable
ip.pl###left > div:nth-of-type(11)
ip.pl###left > div[style*="newsletter"]
iparts.pl##.newsletter-blok
iposto.com##.cf.news_box.bottom-box
irisimo.pl##.footer-email > .row > div:nth-child(2)
irobot.pl##.a-inputcomponent
ita.tools##.ComponentsFooterNewsletterWrapperWithoutLeft
iwanowice.pl##.col-lg-3.col-md-4.col-sm-6.col-xs-12:nth-of-type(2)
izba-lekarska.pl##.add-to-newsletter-button
izigsm.pl###footer > .footMenu > .color.columnBox
jackjones.com##.js-customer-club__signup
jadwizanki.com.pl,opi.org.pl,rosebikes.pl##.newsletterform
jagodnik.pl##.td_uid_52_5f019c1f4f05b_rand.vc_widget_sidebar.td_block_wrap.wpb_wrapper
jagodnik.pl##.textwidget
jagodnik.pl##.widget_text > .block-title
jagodnik.pl##a[href="http://www.jagodnik.pl/newsletter/"]
jakiwniosek.pl##.footer > div > div > div:first-child > :nth-last-child(n+2):nth-last-child(-n+4)
jakrobicmarketing.pl###\31 -2
jaroslawiak.pl###nwslBoxCnt
jaw.com.pl##footer > div > .row > div.col-md-3:nth-of-type(3) > h3, #em_sub
jestemfit.pl##.footer__section.form-fields-std, .newsletter--sg-2
jg.com.pl###footer > .container
joannaceplin.pl##.nsl_glowna, .panel-row-style-for-6-3.panel-row-style.siteorigin-panels-stretch
jobs.pl##.invitation, .notification-submit-box
joga.org.pl###col2 > .module:nth-of-type(2)
johndog.pl##.promo-newsletter
johndog.pl##div[style*="newsletter"][class*="container"]
joom.com##div[class*="promoCorner_"]
jsystems.pl###zapisz-sie-newsletter, a[href="newsletter.do"]
jupi24.pl##.rc-box-newsletter
justbefit.pl#?##new_footer > div > div:-abp-has(> div:nth-child(2) .news-form)
kabexdocieplenia.eu##.footer-wrapper > .footer > div.f-box:first-of-type > *
kalkulatorkalorii.net##footer .row-fluid .form-inline, .row-fluid .bs-callout-success
kam-sport.pl##footer div.col-sm-4.vc_column_container.wpb_column.nm_column:nth-of-type(2) > .vc_column-inner
kappahl.com###news-footer
karakter.pl##.newsletter-promo
kariera.pl##.article-newsletter
karmy.com.pl##.c1 > div.box:nth-of-type(9)
karoseria.eu##.info-newsletter
karpiowy.pl##.newsletter-group > .container
kasastefczyka.pl###InteliwiseSaaSModule_win_wrapper
katalogmarzen.pl##.bottom-box.content-box > .container > .row > div:nth-of-type(2)
katowice24.info##.top-footer > div.col-md-3.col-sm-12:nth-of-type(3)
katowice-drzwi.pl##.foot-news
katowice.eu##.newsletter_title, .newsletterTitle
kaufland.pl##.m-teaser > .m-teaser__link[data-aa-pagename*="newsletter"]
kaufland.pl##.o-form--footernewsletter
kawerna.pl##.item-last.span4
kayak.pl##[class^="Common-Frontdoor-EmailSubscriptionPanel"]
kdk.pl##div.footer-bottom:first-of-type
kiddyfave.com##.col-xs-12.col-sm-12.col-md-12 > h3, .subReqForm
kidsb2b.pl##div.footer-box:nth-of-type(3)
kierunekspozywczy.pl###sb-newsletter
kim24.pl###fboxNewsletter
kim.elblag.pl##p > table > tbody > tr > td:nth-of-type(2)
kingston.com###email-signup-modal
kingston.com##.s-footer__email
kiosk.ruch.com.pl##.footer-section--newsletter
kioskpolis.pl##footer section div form.form[action*="freshmail"]
klasycznebuty.pl###myfooter div.f-grid-4:nth-of-type(2) > h3:nth-of-type(2)
kliknijwzdrowie.pl,retailmarketexperts.com###custom_html-12
klinikaagd.pl##.stoka_newsletter .stoka_newsletter_btn
klinikaagd.pl##.stoka_newsletter > div:nth-child(-n+3)
klinikamiracki.pl##.km-newsletter
klockolandia.pl###footer > .boxBlue
klubjagiellonski.pl##.block-content_breaker_newsletter
km-net.pl###wysuwane
km-net.pl##a[href="/kontakt"]
knowband.com##.kbGetUpdates
kobieta.pl##.text-center.sidebar-box:nth-of-type(11)
kochanamama.pl##.pmpIMail
kodano.pl###app-form-subscribe-wrapper
kolczewska.pl##.ulp-tab-right-middle.ulp-tab > .ulp-tab-content
komfort.pl##.ComponentNewsletterIcon
kompava.pl##.mailinglist-signin
komputronik.pl##div[data-name="newsletterSignup"]
konfederacjalewiatan.pl###bazo_form_popup0
konstantinkanin.com###mailchimp-top-bar
kontakt-simon.com.pl##.newsletter-subscribe__button
kontaktowe.pl###nbj
kontigo.com.pl##[class*="newsletter-root-"]
kormoran-rowy.pl##.site-footer__row--top > .inner-section > .align-right.site-footer__col
koszulkomat.eu##div.group:nth-of-type(5)
koszulkowo.com##.sec--foot__main__box:nth-of-type(2)
kotarbinski.wordpress.com###media_image-33
kozackadrogeria.pl##.block-newsletter-footer
kozigrod.pl###newsletterHld
krainazabawy.pl###footer .col-md-3
krasiczyn.com.pl##.side_newsletter
kreatorium.com###nsl
kross.eu##.is-newsletter.c-group_row
kruczek.pl##.post_mc_newsletter.mc_embed_signupm, #mc-embedded-subscribe-form
krzywydomek.info###main > .row2.col1
ks.pl###nwsltr.extnewsletter
ks.pl##a[href*="#nwsltr"]
ksiegarnia-edukacyjna.pl##.footer-newsletter__content-wrapper
ksiegarnia.beck.pl##.newspopup_up_bg
ksiegarniamorska.pl###blockEmailSubscription_displayFooterRight
ksiegarniasztuki.pl###kolumny_k .prawa
kuchniadladoroslych.pl##.product-newsletter
kuchnialidla.pl##.home_newsletter_col1
kuchniasklep.pl##ks-newsletter-side-button
kulig.pl###newsletter-pasek-in > .row > div:first-child
kulinarne.info##.div.p-3.col-md-4:first-of-type > .text-center.mb-4
kulinarne.info##.form-newsletter
kulturalnysklep.pl##.b-banner-newsletter
kupbilecik.pl##.blinkGray.boxTopInfo
kupiec.pl###vnlab-footer-before
kuponrabatowy.net###social .mleft > h4, #social .email
kurasinski.com##.newsletter-link
kurencja.com##.page-newsletter
kurierhistoryczny.pl##div.newsletter__col:nth-of-type(6)
kwestiasmaku.com###block-block-1
kwiatowaprzesylka.pl##.footer1_13
kwiatywoknach.pl##.block_newsletter_list
l37.eu###footer-container > div.row:first-of-type > div.footer-menu:nth-of-type(5) > :nth-child(-n+5)
labotiga.pl##.block_newletter
ladybusiness.pl##.newsletter-sectionw
laksystem.pl##.wf2-scroll-box.grwf2-wrapper
lamisi.pl##.widget-newsletter-subscribe
lamoda.pl##.min-h-newsletter
lampy.pl###newsletterbox_1
lancut4u.pl##.lsvr-mailchimp-subscribe
lancut.pl,rakoniewice.pl##div[class*="modul"] .subskrypcja
languagetool.org###newsletter_reg
laptopypoznan.pl##.ps-spotlight5
laroche-posay.pl##.ctn_newsletter
laroche-posay.pl##.ctn_newsletterl, .widget_popin_newsletter
lastowiec.pl##.contact-box:has(img[src="data/images/icon_newsletter.png"])
lasuch24.pl###box_biuletyn
latarki.pl##.bakedparallax-wrapper
latarnia.teatrnn.pl###main_oferta > div:nth-of-type(2), #main_oferta > div:nth-of-type(2) + form
lawendowykredens.pl##.footer-static > div.col-sms-12:nth-of-type(3)
lebork24.info###newsletterAdd
lechia.pl##div.foot-cols.row:nth-of-type(2) > div.col-item:nth-of-type(3)
lechpol.pl##.column-header
lechpol.pl##.js__newsletter_form
lectus24.pl###addme
lectus24.pl##.mobile-addme
legalnews24.pl##.bezplatny_bliuletyn
lemonpixel.pl###footer > .col1_3Wrap.wrap > div.col1_3:nth-of-type(3)
lenovo24.pl##.newsletter-section-2
levi.com###newsletterSignup
libra.pl##.footer-bg #block-12
lideria.pl###box_newsletter_text_books
liderpojezierza.pl##div.projekt65spot:nth-of-type(2) > .clear.container > .row > .col-md-12 > div.module:first-of-type
lidl-sklep.pl###footer-newsletter-content
lidl-sklep.pl,lidl.pl##.footer__accordion-newsletter
lidl.pl##.form--newsletter
lightinthebox.com##.our-newsletters
linguajob.pl###zamow-link
lipsko24.pl##.prawyblok3content
littleforest.pl##.footer--newsletter, .footer--blog__right > h2.font--alt:first-of-type, .footer--blog__right > p, .yikes-easy-mc-form
lm.pl##.new_boks_newsletter
logitech.com##.email-subscription
logitechg.com##footer .email-subscription
lokalnatelewizja.pl,supertydzien.pl##.sm-text-center.mb15.col-sm-6:first-of-type
lomza.pl###s-blok3 > form, #s-blok3 > h4:nth-of-type(2)
longevitas.pl##.left.sign-up-home
longterm.pl##.footer-top > .container > .row > div[class]:nth-of-type(3) > div.widget:first-of-type
lookfantastic.pl##.eastendFooter_signup
lotaro.pl,luszczyce.pl,polskiemedia.org###custom_html-4
lp.al.to,lp.x-kom.pl##.newsletter > div > div:nth-child(-n+2)
lp.morele.net###moveToNewsletter
luba-group.com##.footer-list > h6.title:nth-of-type(2), .footer-list > .oposite.theme-button-three
lubimyczytac.pl##.footer__fixed.js-footer-fixed
lumarte.eu###newsAnch
luminosfera.pl,slaskiecentrumkomputerowe.pl##.container > .row > .col-sm-4
luxfood.pl###Left > .nyroModal:first-of-type
luxmed-diagnostyka.pl##.newesletter-box
lycamobile.pl##.lm-footer-container > div > .lm-footer__body > .row > div:first-child > :not(:last-child)
maciej.je##p:nth-of-type(47)
magnapolonia.org##.tnp-subscription
magnatfarby.pl##.newsletter-sign-in-btn
magnatfarby.pl##.sn-newsletter--homepage.sn-newsletter
magusz.com.pl##a[href="#collapse_newsletter"]
majsterkowo.pl,moj-kawalek-podlogi.pl,spirulina.pl,tato.net,techformator.pl,zatorland.pl###text-9
makita.sklep.pl##.ModulNewsletterDol
mam-serce.org##div.uk-section.uk-section-default:nth-of-type(10)
mamaplus.pl###mc_embed_signup
mamonik.pl###text-3
mamopracuj.pl##.newsletters
mamotoja.pl##.nlt-footer
mamstartup.pl##.hb-right.submitClearInput
mamyje.pl##.subscribe_home
managerka.com###zapiszSieNaNewsletter
mango.pl###smSubscriptonBox
mango.pl##.banner-slim
mango.pl##.newsletter-newsletter--Q4
mango.pl##div[class^="newsletter-root-"]
manorhouse.pl##.site-newsletter
manta.com.pl##.col-md-6.news_right
marbo-sport.pl###top_newsletter