-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy patheasylist-notifications.txt
1607 lines (1604 loc) · 76.9 KB
/
easylist-notifications.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: EasyList – Notifications
! Last modified: Fri, 10 Jan 2025 09:50:09 +0000
! Expires: 7 days (update frequency)
! *** easylist:template_header.txt ***
!
! Please report any unblocked adverts or problems
! in the forums (https://forums.lanik.us/)
! or via e-mail ([email protected]).
!
! Homepage: https://easylist.to/
! Licence: https://easylist.to/pages/licence.html
! GitHub issues: https://github.com/easylist/easylist/issues
! GitHub pull requests: https://github.com/easylist/easylist/pulls
!
!--------------------------General blocking rules-----------------------------!
! *** easylist:fanboy-addon/fanboy_notifications_general_block.txt ***
-push-notification.$domain=~github.com
-push-notification/$domain=~github.com
/accusmartwebpush-fire-push-public.js
/al-fb-notification/assets/scripts/al-main-script.js
/amp-user-notification-
/amp-web-push-0.1.js
/assets/www/notification.
/build/push.js
/checkPush.js
/content/js/push.js
/fcmPush.js
/FeedifySW.js
/flying_push.js
/ilabspush.min.js
/inpl.webpush.js
/jquery-notification.js
/jsb/pushnotifications?
/list_notificaciones.php
/maximizly-push.js
/mp-web-notification.js
/notification-prod-sw.js
/notification-sw.js
/notification/notify.js
/notifyme.js
/notifyme.min.js
/one-signal.js
/one-signal.min.js
/onesignal.js
/onesignal.min.
/onesignal/manifest.
/onesignalfix.js
/OneSignalSDKUpdaterWorker.js
/OneSignalSDKWorker.js
/perfecty-push-sdk.min.js
/plugins/tfnotifier-wp/swloader.php
/push-notification.js
/push-notification.min.js
/push-notification/*$domain=~upwork.com
/push-notifications.$~stylesheet
/push-notifications/*
/push-notifications?
/push-sw.js
/push-worker-$script
/push-wrap.js
/push/sbscr.js
/push/sbscrp.js
/push/subscribe.js
/push_app.js
/push_notification.js
/push_notification.min.js
/push_notification/*
/push_notifications.js
/push_subscription.js
/pushes/firebase.js
/pushes/notification.js
/PushexSDK.js
/pushly-sdk.min.js
/pushNotification.js
/pushNotifications.js
/pushnotifications/*
/pushNotificationSdkJS.js
/pushpro-lib.js
/pushsubscribe.js
/pushup-notification/push-app.js
/pushup-notification/push-messaging.js
/pushv2.js
/pushwoosh-service-worker.js
/pushwoosh-web-notifications.js
/pushwoosh-web-pushes-http-sdk.js
/pushy-ver.js
/scripts/onesignal.js
/site-notification-desk.min.js
/smio-push-notification/js/frontend_webpush.js
/subscribe-push-notifications.js
/web-push-notifications.js
/web-push.js
/web-push/init.min.js
/webalert-notification.js
/webnotf.js
/webnotification.js
/webpush-production.js
/webpush.js
/webpush.min.js
/webpush_register.php
/webPushNotifications.js
/wonderpush-loader.min.js
/wonderpush.js
/wonderpush.min.js
/wordpress-fire-push-public.js
/wp-notification-bars-public.js
! Mobile notifications
/app-banner/*$xmlhttprequest
/jquery.androidbanner.js
/js-mobile-*/header_$script
/js/jquery.smartbanner.js|
/js/jquery.smartbanner.min.js|
/mobile-welcome-overlay/*$script
/MobileDownloadBanner.js
/smart-app-banner.js
!------------------------General element hiding rules-------------------------!
! *** easylist:fanboy-addon/fanboy_notifications_general_hide.txt ***
###FCMpush-slidedown-container
###NotificationsAskMsg
###SubscribePush
###SubscribePushNotificationPanel
###Znotify_Prompt
###\5f __tdspushdiv
###___ndtvpushdiv
###app-follow-banner
###app-promo-overlay
###auplusflash
###auwnotificationpopup
###bigpicture-webpush-widget
###browser-notifications-prompt
###confirmaPush_Cont
###cont_webpush
###crocopush_banner
###desktop-notification-ask-dialog
###desktop-notifications
###dialog-push-notification
###divPnot
###edrone--push--alert--box
###frizbit-prompter
###ggpush-main-area
###grow-consent-modal
###hint-push-service
###ilabspush-optin-container
###jeapie-prompt-widget
###js-gcm-notif
###lwp-popover-container
###modalCognitoPush
###my_web_push_app_box_confirm
###nlSubscriptionCookie
###noti_msg
###noti_subscribe_dialog
###notification-permission
###notification-push
###notificationAllowPrompt
###notificationPopUp
###notificationPopup
###notify-optin-wrap
###og-banner
###oiNotification
###onesignal-popover-container
###pa-push-notification-subscription
###popUpNotification
###push-alert-block
###push-notification
###push-notification-box
###push-notification-pop-up
###push-overlay
###push-prompt
###push-subscription-button
###push-subscription-prompt
###pushAdUpBanner
###pushNotification
###pushNotification-disclaimer
###pushOffer
###pushSec
###pushSubscribeModal
###pushSubscriptionModal
###push_alert
###push_notifications
###push_subscribe
###push_switcher
###pushbanner
###pushinstruments_popup
###pushpushgo-container
###pushwoosh-pop
###qrzpush-prompt-widget
###shopify-section-order-notifications
###smart_push_smio_overlay
###smart_push_smio_window
###spm_msg_push_notification
###subscribeToPush
###subscribeToWebPush
###visilabs_web_push_perm_box
###web-alerts-modal
###web-push-prompt
###webPushPopup
###webpush-info-div
###webpushSelctorFormId
###webpush_modal
###webpush_overlay_back
###webpush_soft_prompt
###webpushr-prompt-wrapper
###widget-pushNotification
##.FCMpush-slidedown-container
##.PushNotification--base
##.PushNotification--top
##.PushNotification-popover-dialog
##.PushSubscription-block
##.ampnotification
##.apn-popover-container
##.aswpn-fire-push-popup
##.b-notification-push
##.b-push-notification
##.bk-wonderpush
##.block-sbase-bene-newsletter
##.branded-app-shortcode-inarticle
##.bs-push-noti
##.bubble-push
##.c-push-notification
##.cleverpush-backdrop
##.cleverpush-confirm
##.cont_webpush
##.contentwebpush
##.desktop-notification-ask-dialog
##.dmgpush-popover-container
##.e-push-notification-popup
##.et_push_notification
##.firebase-slidedown-container
##.frizbit-prompt
##.grv-dialog-host
##.hs-push
##.htpush-chrome-style-notification
##.i-push-notification
##.id-StoryElement-embed--cleverPush
##.insider-opt-in-notification
##.item-newsletter-form
##.j-push-notifications-feature
##.jeg_push_notification_content
##.js-custom-push-notifications
##.js-notifications-button
##.js-push-allow
##.kraken-popup
##.lightbox-push
##.m-notifications-banner
##.m-webpush-layer
##.message-push-notification
##.modal-push
##.naf-web-notifications-popup
##.nav-link--notification-handler
##.notBar
##.notf-overlay
##.notificacao.registerPush
##.notification-prompt-wrapper
##.notification-pwa
##.notification-upsell-push
##.notificationConfirmationOverlay
##.notify-optin-wrap
##.ns-notification-popup
##.ntfc_overlay
##.ntfc_popup
##.oi-notify
##.page__notifications
##.perfecty-push-dialog-container
##.pnfpb-push-subscribe-icon
##.push-area-btn
##.push-bx
##.push-modal-wrapper
##.push-notice
##.push-notification-box
##.push-notification-opt-in
##.push-notification-popover
##.push-notification-prompt
##.push-notifications-primer
##.push-overlay
##.push-subscription-alert
##.push-subscription-button
##.push-subscription-prompt
##.push-subscription-wrapper
##.push-wrap:not(body):not(html)
##.push-wrapper:not(body):not(html)
##.pushNotWrap
##.pushNotification
##.push_back
##.push_notification
##.push_notifications_alert
##.push_subscribe
##.push_warn
##.pushinstruments
##.pushly_popover
##.pushowl-optin
##.pwa-modal-prompt
##.rdmapps-push-dialog
##.setrow-push-popup-container
##.showtvPushOverlay
##.simple-subscription-form
##.sk-notification-dialog
##.softPush_notification
##.surveymonkey-popup
##.tsoft-push--in-notification
##.ud_webpush_sticky
##.web-notification
##.web-push
##.web-push-box
##.webpush_wrap
##.window-push
##.wordpress-fire-push-popup
##.ys-push
##[data-cypress="soft-push-notification-modal"]
##[soft-push-notification-modal]
##amp-web-push-widget
##div[class^="container_NotificationsBanner_"]
! Mobile Notifications
###SmarterBannerContainer
###appInstallNotification
###appOpenNotification
###appinstall_bnr
###aside-app-banner
###bannerInstallApp
###branch-banner-iframe
###brzpushpermission
###custom_smartbanner
###daraz-smart-banner
###download_app_banner_btn
###floatingAppButton
###head-app-download
###inlineBannerForApp
###iossmartbanner
###js-getAppHeader
###mn-app-banner
###smart-bnr-rbcapp
###smartbanner-desktop
###smartbanner.android
###smartbanner.ios
###tapcart-web-banner
###xm_app_stickyHeader
##.app-ad-container-desktop
##.app-banner-container
##.app-banner-header
##.app-down-banner-container
##.appInstlBnr
##.app_banner_link
##.appbnr-box
##.appdown_popup
##.banner-download-app-hidden
##.branch-banner
##.c-app-banner-header-wrap
##.c-app-install
##.c-install-banner
##.c-notification-link-app
##.cept-banner-link
##.footer-app-download
##.footer__download-app-container
##.gh-app-banner
##.gta-header-banner
##.header-app-banner
##.headerGetApp
##.installAppPopup-top
##.js-link-to-app
##.js-openAppBox
##.mobile-app-banner
##.mobile-download-app-tout
##.mobile-web-redirect-bar
##.mopile-app-banner
##.native-app-banner
##.open-app-banner
##.p-webtoapp-banner
##.rsttop-webtoapp-banner-overlay
##.smart-banner-collection
##.smart-banner-download
##.smartbanner--android
##.smartbanner--ios
##.smartbanner-android
##.smartbanner-container
##.smartbanner-desktop
##.smartbanner-ios
##.smartbnr-android
##.smartbnr-ios
##.tmblr-iframe--app-cta-button
##.z-bit-smartbanner
##[class^="adjust-smart-banner"]
##[data-testid="app-install-container"]
##a[href^="http://www.mobi24.net/"]
##a[href^="https://www.mobi24.net/"]
##amp-app-banner
! google review popup
##.es-badge-container
! substack
##.subscription-widget-wrap > .show-subscribe
! spot.im Notifications
##[class*="NotificationsBell__notificationsWrapper-"]
! International
###uutiskirje-nosto
!-------------------------Third-party blocking rules--------------------------!
! *** easylist:fanboy-addon/fanboy_notifications_thirdparty.txt ***
||api-push.com^$third-party
||azureedge.net/js/cookie_notificacao.min.js
||bildirnet.com^$third-party
||braze.com^$third-party
||cappushino.com^$third-party
||cdn.qgr.ph^$third-party
||cdn.qgraph.io^$third-party
||centrnotify.com^$third-party
||confirmit.com^$third-party
||conforama-push.com^$third-party
||contentsitesrv.com/js/push/$third-party
||css.xjsx.lol^$third-party
||digipush.io^$third-party
||dpns-notifications.com^$third-party
||evolok.net^$third-party
||farteniuson.com^$third-party
||getnotification.me^$third-party
||irpush.com^$third-party
||jubi.ai/buttonbot/$script,third-party
||krakenoptimize.com^$third-party
||linker.hr^$third-party
||luravius.com^$third-party
||medallia.com^*/onsite/embed.js
||neopush.io^$third-party
||news2day.me^$third-party
||notification.tubecup.net^
||notifications.ltd^$third-party
||notifikuj.cz^$third-party
||notifstation.com^$third-party
||notix.io^$third-party
||ntvsw.com^$third-party
||partishion.com^$third-party
||pathlime.com^$third-party
||popmechanic.ru^$third-party
||propush.net^$third-party
||pt.appirits.com^$third-party
||puscomosca.com^$third-party
||push-engage.com^$third-party
||push-notifications.top^$third-party
||push.asahiinteractive.com^
||push.bytesignal.com^
||push.daksham.in^$third-party
||push.delivery.ethinking.de^
||push.delivery^$third-party
||push.esputnik.com^
||push.getbeamer.com^
||push.knd.ro^
||push.newscraft.io^
||push.reamaze.com^
||push.rollout.io^$third-party
||push.world^$third-party
||pushaddict.com^$third-party
||pushango.com^$third-party
||pushassist.com^$third-party
||pushaya.com^$third-party
||pushbaza.com^$third-party
||pushbots.com^$third-party
||pushbox.info^$third-party
||pushchev.info^$third-party
||pushcrew.com^$third-party
||pushdealer.com^$third-party
||pushe.co^$third-party
||pusherapp.com^$third-party
||pushinpage.com^$third-party
||pushinstruments.com^$third-party
||pushio.com^$third-party
||pushjunky.com^$third-party
||pushkahouse.com^$third-party
||pushkaplus.com^$third-party
||pushloop.io^$third-party
||pushly.com^$third-party
||pushmaster-cdn.xyz^$third-party
||pushmejs.com^$third-party
||pushnews.eu^$third-party
||pushnotifications.click^$third-party
||pushouse.com^$third-party
||pushowl.com^$third-party
||pushpad.xyz^$third-party
||pushpanda.io^$third-party
||pushpro.io^$third-party
||pushprofit.ru^$third-party
||pushprospush.com^$third-party
||pushpushgo.com^$third-party
||pushstack.it^$third-party
||pushtide.com^$third-party
||pushvip.ru^$third-party
||pushwhy.com^$third-party
||pushy.ai^$third-party
||quarepush.com^$third-party
||quaruzon.com^$third-party
||qushad.com^$third-party
||realpush.media^$third-party
||realpush.network^$third-party
||revpusher.com^$third-party
||sckxppzdm.com^$third-party
||signaly.co^$third-party
||snrcdn.net^$third-party
||spacepush.ru^$third-party
||system-notify.app^$third-party
||ternairsoftware.com/publicwebpush/
||topswp.com^$third-party
||unative.com^$third-party
||viafoura.net/push_handlers.js
||virtualpushplatform.com^$third-party
||webpush.jp^$third-party
||webpushr.com^$third-party
||webpushs.com^$third-party
||worldpush.co^$third-party
||wps.relateddigital.com^$third-party
||wpush.biz^$third-party
||wpushsdk.com^$third-party
||xedo.me^$third-party
||youlead.pl/webpushprompt.js
! Stand-alone, in Easyprivacy
||actirinius.com^$third-party
||aimtell.com^$third-party
||alertme.news^$third-party
||amazonaws.com/cdn.aimtell.com/
||aswpsdkeu.com^$third-party
||aswpsdkus.com^$third-party
||bildirt.com^$third-party
||bosspush.com^$third-party
||browserpusher.com^$third-party
||cdn-sitegainer.com^$third-party
||cleverpush.com^$third-party
||copush.com^$third-party
||cracataum.com^$third-party
||danorenius.com^$third-party
||digitalpush.org^$third-party
||edrone.me^$third-party
||face-push.com^$third-party
||feedify.net^$third-party
||feraciumus.com^$third-party
||fernomius.com^$third-party
||fkondate.com^$third-party
||foxpush.com^$third-party
||foxpush.net^$third-party
||getback.ch^$third-party
||getpush.net^$third-party
||getpushmonkey.com^$third-party
||gravitec.net^$third-party
||heroesdom.com^$third-party
||jeeng.com^$third-party
||kattepush.com^$third-party
||master-push.com^$third-party
||master-push.net^$third-party
||misrepush.com^$third-party
||moengage.com^$third-party
||mp3vizor.com^$third-party
||najva.com^$third-party
||nativesubscribe.pro^$third-party
||notifadz.com^$third-party
||notifpush.com^$third-party
||notify.solutions^$third-party
||olgtex.com^$third-party
||on-push.com^$third-party
||onepush.app^$third-party
||provesrc.com^$third-party
||psh.one^$third-party
||push-ad.com^$third-party
||push-free.com^$third-party
||pushalert.co^$third-party
||pushbird.com^$third-party
||pushbullet.com^$third-party
||pushengage.com^$third-party
||pushible.com^$third-party
||pushify.com^$third-party
||pushwoosh.com^$third-party
||reprocautious.com^$third-party
||sendpulse.com^$third-party
||setrowid.com^$third-party
||shroughtened.com^$third-party
||snd.tc^$third-party
||subscribers.com^$third-party
||truenat.bid^$third-party
||truepush.com^$third-party
||urbanairship.com^$third-party
||viapush.com^$third-party
||webpu.sh^$third-party
||whiteclick.biz^$third-party
||wnpbdan.bid^$third-party
||wonderpush.com^$third-party
||wwclicknews.club^$third-party
||wwclicktm.club^$third-party
||xtremepush.com^$third-party
! Mobile notifications
||app.adjust.net.in/smart_banner
||mobi24.net^$third-party
! *** easylist:fanboy-addon/fanboy_sounds_thirdparty.txt ***
||acquire.io/assets/sound/
||amazonaws.com/alive5cdn/$media
||apex.live/media/$media
||app.chaport.com/sounds/
||app.chatwoot.com/audio/
||app.onlim.com/app/assets/audios/
||appspot.com/sounds/chatmsg.mp3
||assets.chaport.com/sounds/
||azureedge.neti^$media,domain=oct8ne.com
||bac-assets.com/chat/spa-assets/$media,domain=bankofamerica.com
||bac-assets.com/spa/widgets/www-chat/$media,domain=bankofamerica.com
||callback24.io/sounds/
||carchat24.com/inpagechat/audio/$media
||carrotquest.app/sounds/
||cdn-widget.callpage.io/build/sounds/
||channel.io/plugin/$media
||chat.octadesk.services/embed/static/media/$media
||chatango.com/pcache/sounds/
||chatbot.denizbank.com/Content/media/$media
||chatplus.jp/app/s/sound/
||cleversite.ru/client/default/sound/
||cliengo.com^$media
||cloudfront.net/prod/media/$domain=birdeye.com
||collectcdn.com^$media
||contivio.com/Chat2/audio/
||cpmlink.net/audio.mp3
||cpmlink.net/go/assets/audio/audio.mp3
||crisp.chat/static/sounds/
||czater.pl/assets/sounds/
||d7keiwzj12p9.cloudfront.net/widget-sounds/$media
||driftqa.com/conductor/assets/media/
||echatsys.com/sounds/
||formilla.com/remoteAssets/media/
||fxcity.pl/images/mp4/$media
||goftino.com/static/assets/$media
||gubagoo.io/v4/media/
||helpcrunch.com/sounds/
||helpscout.net/static/ui-sounds/
||intelliticks.com/prod/common/$media
||jivo.ru/sounds/
||jivosite.com/sounds/
||js.driftt.com/conductor/assets/media/
||js.driftt.com/deploy/assets/static/audio/
||js.intercomcdn.com/audio/
||kommunicate.io/kommunicate/$media
||leadback.ru/sounds/$media
||leadgenic.ru/production/$media
||live2support.com/uploads/sound/
||livebeep.com/visitor/events/$media
||livechatinc.com/widget/static/media/
||lpsnmedia.net/le_unified_window/$media
||me-talk.ru/support/sounds/
||nice-incontact.com/inContact/ChatClient/$media
||phenompeople.com/txm-bot/prod/$media
||purechatcdn.com/Content/Audio/
||qualified.com/packs/$media
||quicktext.im/assets/audio/
||raychat.io/assets/widget/audio/
||reamaze.com/audio/
||revechat.com/client/sound/
||richpanel.com/audio/
||salesmartly.com/sounds/
||smartsuppcdn.com/assets/sounds/
||snapengage.com/sounds/
||static.olark.com/jsclient/sounds/
||static.widget.trengo.eu/assets/$media
||streamwood.ru/img/$media
||tars-file-upload.s3.amazonaws.com^$media
||tawk.to/*/audio/
||tidiochat.com^$media
||userbot.ai/widget-chat/dist/audio/
||userway.org/widgetapp/sounds/
||widget.awhy.it/chat/img/$media
||widget.insent.ai/static/media/
||widgets.binotel.com/w/chat/$media
||wpengine.com/wp-content/mu-plugins/wpengine-dotcom/audio/
||zdassets.com/web_widget/$media
||zohocdn.com/salesiq/*/sound/
||zopim.com/widget/sounds/
||zyratalk.com/contractorschatbot/$media
!--------------------------Specific blocking filters--------------------------!
! *** easylist:fanboy-addon/fanboy_notifications_specific_block.txt ***
/firebase-messaging.js$script,domain=tribunnews.com
||9to5terminal.com/push.js
||abendpoint.com/dist/js/push.js
||alerts.ndtv.com^
||alerts.thedailystar.net^
||alibaba.com/sw.js
||annahar.com/assets/js/notifications.js
||assets.ilcdn.fi/questback.popup-$script,domain=iltalehti.fi
||astian.org/?push_notification_sw
||bdstatic.com/linksubmit/push.js
||dailymail.co.uk/api/web-push-notification/
||gadgetsnow.com/sw.cms
||gstatic.com/firebasejs/$domain=joins.com|novayagazeta.eu|packaginginsights.com
||hindustantimes.com/messaging-sw.js
||hindustantimes.com/sw.js
||hindustantimes.com^*/ht-notification-
||hulkprod.anm.co.uk/api/web-push-notification/
||imyfone.com/*/notification/$script
||indiatimes.com/pn/
||iol.co.za/sw.js
||kogan.com/sw.js
||latestdeals.co.uk/sw.js
||msn.com/bundles/v1/homePage/latest/experiences_conditional-banner
||ndtv.com/js/breaking_pushalert_revised.js
||ndtv.com/sw.js
||newsukraine.rbc.ua/sworker.js
||nookazon.com/firebase-messaging-sw.js
||pcguide.com/sp-push-worker-fb.js
||phys.org/push-sw.js
||push.cnnindonesia.com^
||push.ictsd.org^
||renaultsport.com/spip.php?page=sw.js
||rottentomatoes.com/service-worker/sw.js
||rt.com/homescreen-sw.js
||sammobile.com/wp-content/plugins/sam-push-notifications/
||scmp.com/sw.js
||seattletimes.com/wp-content/plugins/st-user-messaging/$script
||sportskeeda.com/js/production/web-notifications/
||techwalla.com/push-service-worker.js
||telegraphindia.com/akam-sw.js
||timesnownews.com/sw.js
||ultimedia.com/js/common/notification.js
||weather.com/*.MedalliaSurvey.
||wepc.com/sp-push-worker-fb.js
! International
||0564.ua/assets/d6ade384/js/alertsWidget.js
||ad-hoc-news.de/js/push.js
||agazeta.com.br/assets/javascript/notification.js
||cnnindonesia.com/sw.js
||dcnews.ro/sm-
||elpais.com.uy/utms.js
||flashscore.fr^*/build/notifications.
||futura-sciences.com/clientscript/push.js
||horoscope.fr/notifications/
||informazione.it/wr/promo-miainfo.js
||metrobilbao.eus/firebase-messaging-sw.js
||push.idowa.de^
||push.neko-san.fr^
||pushme.magellanotech.it^
||tio.ch/js/api.push.js
||tutto.tv/wp-content/plugins/plugin-notifiche-
||uchubiz.com/wp-content/themes/uchubiz/assets/js/push.js
||winnipegfreepress.com/firebase-messaging-sw.js
! Mobile Notifications
||baby-calendar.jp/nazuke/img/app/header_
||browser.geekbench.com/assets/ads/
||static.chrono24.com/lib/generated/js/app-hint-layer.
||tapcart.com/mobile-download-banner/banner-min.js
!------------------------Specific element hiding rules------------------------!
! *** easylist:fanboy-addon/fanboy_notifications_specific_hide.txt ***
clickindia.com###GetCustomCategoryLead
tbsnews.net###___tbspushdiv
thedailystar.net###bellIcon
redbull.com###bottom-notifications
thehindu.com,thehindubusinessline.com###gsi_overlay
masrawy.com,yallakora.com###izooto-optin
kizi.com###kizi-popover-dialog
vk.com###page_bottom_banners_root
iol.pt###popover
livenation.co.nz###push-notifications-popup
bigislandnow.com###pushNotifications
google.com###pushdown
newnoisemagazine.com###snppopup-welcome
newsclick.in###spb-block-pushnotificationpopup-2
pewresearch.org###survey-5-trust
nrl.com###vue-prompt-toast
live.erinn.biz###win_appinstallhint
alarabiya.net,indiatimes.com###wzrk_wrapper
cheaptickets.com,orbitz.com,travelocity.com,wotif.com##.CustomerNotificationsWrapper
tenor.com##.LanguageBanner
airship.com##.PushNotification
chaturbate.com##.RoomSignupPopup
reddit.com##.XPromoBlockingModal
reddit.com##.XPromoInFeed
improvethenews.org##.__floater
nzherald.co.nz##.action-bar
fanblogs.jp##.aff-notice
informationweek.com##.announcement
bing.com##.b_bnp_bopc
startpage.com##.banner-top
tmz.com##.browser-notifications-prompt
romaniajournal.ro##.bs-push-noti
cnet.com##.c-globalNotification
techwalla.com##.component-push-notification
manutd.com##.custom-popup
advfn.com##.cw-prompt-alert
gmanetwork.com##.ent-subscribe-prompt-wrapper
msn.com##.homepage-banner
yummly.com##.house-promo-root
ft.com##.instant-alert-cta
forum.adrenaline.com.br##.js-enablePushContainer
recyclingproductnews.com##.modal-notifications
correiobraziliense.com.br##.noticia_notificacao
eldestapeweb.com,laarena.com.ar##.notificacion-modal
mdjonline.com##.notification-button
business-standard.com##.notification-col
aljazeera.com##.notification-pre-permission
winnipegfreepress.com##.notifications-banner
wnep.com##.page__notifications
post-gazette.com##.pg-notifybox
pnas.org##.pop-notification
investing.com##.preloaded_lightbox
foxnews.com##.push-alert-notify
iclarified.com##.pushmodal
pnas.org##.signup-alert-ad
gamingbible.com,ladbible.com,sportbible.com,tyla.com,unilad.com,uniladtech.com##.soft-notification-modal_modal__8KcpZ
themonthly.com.au##.subscriber-push-end
indiatoday.in##.tapBoxCls
ghpage.com##.tds-call-to-action1
aljazeera.com##.user-accounts-tooltip.closable
johnsoncitypress.com##.web-promo-designer
gptoday.net##.webpush_popup
waze.com##.wz-downloadbar
reddit.com##.xPromoAppStoreFooter
chrome.google.com##[role="banner"] > div[class][role="dialog"][aria-labelledby="promo-header"]
wallapop.com##div[class^="app-smart-banner_"]
!! International
segre.com###body_modal_5bNRsFSmILUgICbhc8pp
diarimes.com###body_modal_mLuzd6bcGWwnVCvfwvBU
ecuavisa.com###modalNotification
toy-people.com###notification_alert_container
hesport.com###notification_pp
animefire.net###page-mask
voetbalkrant.com###requestNotificationPermission
dn.pt###sk-notifications-container
szeretlekmagyarorszag.hu##.modal-app-promo
!aerzteblatt.de###pushy
valoraanalitik.com###spopup
animefire.net###sub_buttons
animefire.net###sub_modal
abendzeitung-muenchen.de###webpush-app
muziker.at,muziker.be,muziker.bg,muziker.co.uk,muziker.com,muziker.cz,muziker.de,muziker.ee,muziker.es,muziker.fi,muziker.fr,muziker.gr,muziker.hr,muziker.hu,muziker.ie,muziker.it,muziker.lt,muziker.lu,muziker.lv,muziker.nl,muziker.nu,muziker.pl,muziker.pt,muziker.ro,muziker.se,muziker.si,muziker.sk###webpush-popup
focus.de###wpBreakingNewsBanner
areena.yle.fi##.PauseRecommendations__PauseRecommendationsBackground-sc-1abti0d-0
romait.it##.alert
huffingtonpost.es##.banner-app__container
nu.nl##.breakingpush
zillow.com##.cQZIoF
kariyer.net##.download-app-wrapper
actionnetwork.com##.follow-author__button
buyma.com##.js-app-download-url
relax-job.com##.js-smartapp-banner
ziare.com##.modal-backdrop
ziare.com##.modal__wp
jornaldenegocios.pt##.notificacao
elconsolto.com,masrawy.com##.notification
metroworldnews.com.br,publimetro.cl##.notification-subs
almanar.com.lb##.notification-wrap
relax-job.com##.p-top-app-appeal
mail.ru##.ph-balloo
actionnetwork.com##.promotion-card__container
flvto.biz##.push-offer
thebeliever.net##.subscriber-popup-container
news.mail.ru##.tooltip_width_huge
actionnetwork.com##.user-component__trial
sbt.com.br##.webpush
bank.gov.ua##.widget-pushNotification
kokemaenjokilaakso.fi##[class|="col-sm"] > .boksiharmaa
zora.bg##cc-web-push-popup
rtsplaneta.rs##ms-allow-notification-modal
tt.com##ttwww-emarsys-push-notification
cba24n.com.ar##view-firebase-prompt
! Mobile app Notifications
bhaskar.com###APP_INSTALL_POPUP_CONTAINER_ID
thefastmode.com###ChromeAppPromotion
clubd.co.jp###FixedBanner
paypal.com###PPAppDownloadBannerContainer
newsmax.com###SMSbanner
radio.net###always-visible-banner-desktop-banner
trakt.tv###android-beta-wrapper
google.ad,google.ae,google.al,google.am,google.as,google.at,google.az,google.ba,google.be,google.bf,google.bg,google.bi,google.bj,google.bs,google.bt,google.by,google.ca,google.cat,google.cd,google.cf,google.cg,google.ch,google.ci,google.cl,google.cm,google.cn,google.co.ao,google.co.bw,google.co.ck,google.co.cr,google.co.id,google.co.il,google.co.in,google.co.jp,google.co.ke,google.co.kr,google.co.ls,google.co.ma,google.co.mz,google.co.nz,google.co.th,google.co.tz,google.co.ug,google.co.uk,google.co.uz,google.co.ve,google.co.vi,google.co.za,google.co.zm,google.co.zw,google.com,google.com.af,google.com.ag,google.com.ai,google.com.ar,google.com.au,google.com.bd,google.com.bh,google.com.bn,google.com.bo,google.com.br,google.com.bz,google.com.co,google.com.cu,google.com.cy,google.com.do,google.com.ec,google.com.eg,google.com.et,google.com.fj,google.com.gh,google.com.gi,google.com.gt,google.com.hk,google.com.jm,google.com.kh,google.com.kw,google.com.lb,google.com.ly,google.com.mm,google.com.mt,google.com.mx,google.com.my,google.com.na,google.com.nf,google.com.ng,google.com.ni,google.com.np,google.com.om,google.com.pa,google.com.pe,google.com.pg,google.com.ph,google.com.pk,google.com.pr,google.com.py,google.com.qa,google.com.sa,google.com.sb,google.com.sg,google.com.sl,google.com.sv,google.com.tj,google.com.tr,google.com.tw,google.com.ua,google.com.uy,google.com.vc,google.com.vn,google.cv,google.cz,google.de,google.dj,google.dk,google.dm,google.dz,google.ee,google.es,google.fi,google.fm,google.fr,google.ga,google.ge,google.gg,google.gl,google.gm,google.gp,google.gr,google.gy,google.hn,google.hr,google.ht,google.hu,google.ie,google.im,google.iq,google.is,google.it,google.je,google.jo,google.kg,google.ki,google.kz,google.la,google.li,google.lk,google.lt,google.lu,google.lv,google.md,google.me,google.mg,google.mk,google.ml,google.mn,google.ms,google.mu,google.mv,google.mw,google.ne,google.nl,google.no,google.nr,google.nu,google.pl,google.pn,google.ps,google.pt,google.ro,google.rs,google.ru,google.rw,google.sc,google.se,google.sh,google.si,google.sk,google.sm,google.sn,google.so,google.sr,google.st,google.td,google.tg,google.tk,google.tl,google.tm,google.tn,google.to,google.tt,google.vg,google.vu,google.ws###app > div.visible > div[role="dialog"][jsaction^="focusout:promotion.dismiss;"]
backnumber.info###app-bnr
m.calciomercato.com###app-download
kriptomat.io###app-popup
sports.yahoo.com###app-promo
linkedin.com###app-upsell-container
m.economictimes.com###appDwnldBanner
m.aiscore.com###appLink
goo-net.com###app_info_area
brandeli.com###appbuner
bing.com###b_pole
dtac.co.th###banner_dtacapp
linkedin.com###blocking-upsell-modal
looopings.nl###blogAppbox
gadgets360.com###bnotify
nbcsandiego.com###branch-amp-journey
deepl.com###callout-subtitle-chromeExtensionPromo
castbox.fm###channelAppBar
playbite.com###desktop-cta
sudbury.com###details-widgets
deepl.com###dl_app_banner_popup
map.baidu.com###downloadnativepopupUlink
economictimes.indiatimes.com###float_app_ET
codeur.com###follow-modal
kogan.com###footer-native-banner
clubd.co.jp###footerBanner
bmwc.marv.jp###footer_badge-fixed
m.economictimes.com###footer_banner
mercari.com###getTheAppFooter
patreon.com###half-sheet-app-banner
ventusky.com###header > .ii[href]
aliexpress.com,aliexpress.us###header-float-banner
kurashiru.com###header_app
web.quizknock.com###header_iosapp_link
wral.com###house-promo-impression
trakt.tv###ios-official-wrapper
ivoox.com###jq-box-app
mamanoko.jp###js-actamDownloadModal
kinarino.jp###js-appeal-top-banner
euronews.com###js-smart-banner
kinarino-mall.jp###js-view-in-app
x.com###layers div[class="css-1dbjc4n r-l5o3uw r-97e31f"]
zillow.com###local-app-upsell
adspecials.us,ajanlatok.hu,akcniletak.cz,catalogosofertas.cl,catalogosofertas.com.ar,catalogosofertas.com.br,catalogosofertas.com.co,catalogosofertas.com.ec,catalogosofertas.com.mx,catalogosofertas.com.pe,catalogueoffers.co.uk,catalogueoffers.com.au,flugblattangebote.at,flyerdeals.ca,folderz.nl,folhetospromocionais.com,folletosofertas.es,gazetki.pl,kundeavisogtilbud.no,ofertelecatalog.ro,offertevolantini.it,promocatalogues.fr,promotiez.be,promotions.ae,prospektangebote.de,reklambladerbjudanden.se,tilbudsaviseronline.dk###mobile-app-popup
cryptorank.io###mobile-popup
pixlr.com###mobile-variant
consumerreports.org###mtRoundupPaywallPopup
privacywall.org###myModal
amazon.com###nav-app-banner-container
oneindia.com###open-app
windy.com###open-in-app
geeksforgeeks.org###openInApp-modal
timesnownews.com###openin-app
playbite.com###pb-cta
linkedin.com###protip-capsule
cookpad.com###ru-promotion-banner
mail.google.com###sdppromo
kraken.com###smart-app-banner
cbsnews.com,yelp.com###smart-banner
m.jpost.com,tandem.net###smartBanner
deviantart.com,dw.com,eurosport.com,nzherald.co.nz,photobucket.com,spiegel.de,tvnz.co.nz###smartbanner
mail.google.com###speedbump
google.ad,google.ae,google.al,google.am,google.as,google.at,google.az,google.ba,google.be,google.bf,google.bg,google.bi,google.bj,google.bs,google.bt,google.by,google.ca,google.cat,google.cd,google.cf,google.cg,google.ch,google.ci,google.cl,google.cm,google.cn,google.co.ao,google.co.bw,google.co.ck,google.co.cr,google.co.id,google.co.il,google.co.in,google.co.jp,google.co.ke,google.co.kr,google.co.ls,google.co.ma,google.co.mz,google.co.nz,google.co.th,google.co.tz,google.co.ug,google.co.uk,google.co.uz,google.co.ve,google.co.vi,google.co.za,google.co.zm,google.co.zw,google.com,google.com.af,google.com.ag,google.com.ai,google.com.ar,google.com.au,google.com.bd,google.com.bh,google.com.bn,google.com.bo,google.com.br,google.com.bz,google.com.co,google.com.cu,google.com.cy,google.com.do,google.com.ec,google.com.eg,google.com.et,google.com.fj,google.com.gh,google.com.gi,google.com.gt,google.com.hk,google.com.jm,google.com.kh,google.com.kw,google.com.lb,google.com.ly,google.com.mm,google.com.mt,google.com.mx,google.com.my,google.com.na,google.com.nf,google.com.ng,google.com.ni,google.com.np,google.com.om,google.com.pa,google.com.pe,google.com.pg,google.com.ph,google.com.pk,google.com.pr,google.com.py,google.com.qa,google.com.sa,google.com.sb,google.com.sg,google.com.sl,google.com.sv,google.com.tj,google.com.tr,google.com.tw,google.com.ua,google.com.uy,google.com.vc,google.com.vn,google.cv,google.cz,google.de,google.dj,google.dk,google.dm,google.dz,google.ee,google.es,google.fi,google.fm,google.fr,google.ga,google.ge,google.gg,google.gl,google.gm,google.gp,google.gr,google.gy,google.hn,google.hr,google.ht,google.hu,google.ie,google.im,google.iq,google.is,google.it,google.je,google.jo,google.kg,google.ki,google.kz,google.la,google.li,google.lk,google.lt,google.lu,google.lv,google.md,google.me,google.mg,google.mk,google.ml,google.mn,google.ms,google.mu,google.mv,google.mw,google.ne,google.nl,google.no,google.nr,google.nu,google.pl,google.pn,google.ps,google.pt,google.ro,google.rs,google.ru,google.rw,google.sc,google.se,google.sh,google.si,google.sk,google.sm,google.sn,google.so,google.sr,google.st,google.td,google.tg,google.tk,google.tl,google.tm,google.tn,google.to,google.tt,google.vg,google.vu,google.ws###stUuGf
vietnamairlines.com###store-notify
analyticsinsight.net,newsgram.com###sw-wrapper
mlbtraderumors.com###text-17
observer-reporter.com###tncms-block-689490
m.economictimes.com###wapFooter
imgur.io##.Ad
redfin.com##.AppInstallBannerWrapper
reddit.com##.AppSelectorModal__body
ganganonline.com##.Base_banner__UbMI_
viu.com##.Box-root.css-1bp9apo
yandex.com##.Distribution-Popup
metservice.com##.Footer-section-image
thescore.com##.GetTheAppModal__getTheAppButton--1tOrV
minne.com##.MinneAppBanner_root__di0Qk
bing.com##.PopinAnimation
behance.net##.PrimaryNav-appLinkContainer-bhx
airasia.com##.QRPopUp__QRPopUpWrapper-sc-8gx7le-0
www.google.com##.QWEVge
imgur.io##.ShareButtons-backdrop
imgur.io##.ShareButtons-wrapper
behance.net##.SimplifiedPushToMobilePrompt-root-Sct
beebs.app##.SmartAppBanner-module__container___sK72V
imgur.com##.SmartAppBanner-wrapper
audi-sport.net##.TapatalkBanner_Container
reddit.com##.TopNav__promoButton
lbcgroup.tv##.TopicPresentation
tenor.com##.UpsellPill
mrporter.com##.UserTargetedNotification2
reddit.com##.XPromoBottomBar
duolingo.com##._15MEM
grammarly.com##._16m8p-button
bigbasket.com##._1dBfC
m.economictimes.com##._2YmFf
m.economictimes.com##._2rMIm
wifiman.com##._3BIlj
asos.com##._3bNxItQ
timesofindia.indiatimes.com##._PA8f
instagram.com##._acc8
m.webtoons.com##._appDownloadPopup
smartfren.com##.alert-download
skysports.com##.android-banner
filmix.ac##.android-telegram-main
coincodex.com##.app
washingtonpost.com##.app-adoption-banner
flypgs.com##.app-b
autoscout24.it,m.calciomercato.com,mygwork.com,prioritypass.com,similarweb.com,spooncast.net,substack.com,whosampled.com##.app-banner
mygwork.com##.app-banner--overlay
autoscout24.it##.app-banner-fragment
coinmarketcap.com##.app-banner-new
republika.rs##.app-box
financialexpress.com,indianexpress.com##.app-btn
klook.com##.app-download
aljazeera.com,ebay.com##.app-download-banner
sportskeeda.com##.app-download-modal
ixigo.com##.app-download-sticky-wrapper
gumtree.com.au##.app-download-wrapper
techfeed.io##.app-install-banner
hindustantimes.com##.app-link
news.yahoo.com,tracker.gg##.app-promo
atlasobscura.com##.app-store-heading
banggood.com##.app-top-bar
banggood.com##.app-top-height
makemytrip.com##.appDnldCnt
bleacherreport.com##.appInstallButton
kijiji.ca##.appMarketingWrapper-909710043
hindustantimes.com##.app__link
oilprice.com##.app_download_ad
izi.travel##.app_message
theepochtimes.com##.app_promo
cookpad.com##.app_promotion
cookpad.com##.appinstall
atlasobscura.com##.apple-store-icon
re-katsu.jp##.appli
fdoc.jp##.appli_banner_box
lionair.co.id##.applink
flightradar24.com##.applink-container
banglanews24.com##.apps
happytv.rs##.apps-download
bdnews24.com##.apps-logo
qatarairways.com##.appstore