forked from DandelionSprout/adfilt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
LegitimateURLShortener.txt
1286 lines (1278 loc) · 74.1 KB
/
LegitimateURLShortener.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
! Title: ➗ Actually Legitimate URL Shortener Tool
! Version: 10September2021v1-Beta
! Expires: 2 days
! Description: In a world dominated by bit.ly, ad.fly, and several thousand other malware cover-up tools, this list reduces the length of URLs in a much more legitimate and transparent manner. Essentially, it automatically removes unnecessary $/& values from the URLs, making them easier to copy from the URL bar and pasting elsewhere as links. Enjoy.
! If you like this list and wish for more people to use it, give some thumbs up to the https://github.com/AdguardTeam/FiltersRegistry/issues/401 and https://github.com/AdguardTeam/FiltersRegistry/issues/400 threads.
! Homepage: https://github.com/DandelionSprout/adfilt/discussions/163
! Homepage for the repository: https://github.com/DandelionSprout/adfilt/blob/master/Wiki/General-info.md#english
! Opt-in allowlist for affiliate support tags: https://raw.githubusercontent.com/DandelionSprout/adfilt/master/LegitimateURLShortener-AffiliateTagAllowlist.txt
! Special thanks to https://github.com/git-101-collab for providing a 3-digit amount of new entries to this list, and to https://github.com/iam-py-test for volunteering to speed up the addition of user-submitted entries.
! From AdGuard CoreLibs (11/11/2020)
$removeparam=yclid
$removeparam=gclid
$removeparam=fbclid
$removeparam=_openstat
$removeparam=fb_action_ids
$removeparam=fb_comment_id
$removeparam=fb_action_types
$removeparam=fb_ref
$removeparam=fb_source
$removeparam=action_object_map
$removeparam=action_ref_map
! https://www.elkjop.no/product/data/kabler-og-tilkobling-pc-og-nettverk/APPLEMD463ZA/thunderbolt-til-gigabit-ethernet-adapter?utm_id=Pricecomparison2989_5_False&utm_medium=Pricecomparison (14/11/2020)
! https://www.ikea.com/kr/en/stores/restaurant/?itm_campaign=ikea_food&itm_element=essential_banner&itm_content=ikea_food (17/02/2021)
! https://www.infoq.com/containers/?itm_source=infoq&itm_medium=header_graybar&itm_campaign=topic_clk (28/02/2021)
! https://app.sheetgo.com/workflows/1606149317012600L5SS/connections?stm_source=sheetgo-webapp-workflow-invite&stm_medium=email&stm_campaign=on-demand-invitation (28/02/2021)
! https://github.com/DandelionSprout/adfilt/discussions/163#discussioncomment-488307
$removeparam=/^utm_/,domain=~redir.tradedoubler.com
$removeparam=/^itm_/,domain=~redir.tradedoubler.com
$removeparam=/^stm_/,domain=~redir.tradedoubler.com
@@mailinglist$removeparam=/^utm_/
! https://www.ixigua.com/6888869154099629319?logTag=Y8JlCALntSDuDesMiPno8 (31/10/2020)
$removeparam=logTag
! https://www.jula.no/catalog/fritid/trening/treningsutstyr/manualer-og-vektstenger/manualsett-951150?gclid=Cj0KCQjwlvT8BRDeARIsAACRFiUj4R30NdrcmVwC1-pBi43uGBKic6uEq0zEJfkXS3hxOfGrJ3CrR9waAoy9EALw_wcB&gclsrc=aw.ds (31/10/2020)
$removeparam=gclsrc
! https://www.nytimes.com/2020/11/10/us/yellowstone-chickens.html?smid=tw-share (11/11/2020)
$removeparam=smid
! https://www.norsk-tipping.no/redirector/oddsen/kjop?WT.mc_id=Nettavisen_nettavisen_ekomm_langoddsen_Oddsartikkel__ekomm&utm_source=nettavisen&utm_medium=ekomm&utm_content=langoddsen_Oddsartikkel_&utm_campaign=ekomm&view=lobby&rekker=[1548011,4825429,1]&spillsystem=1 (15/11/2020)
$removeparam=/^WT\./i
$removeparam=/^WT_/i
$removeparam=/^WTmc_/i
$removeparam=/^WTmc\./i
! https://twitter.com/PlanNorge/status/1181537299038953473?ref_src=twsrc%2525255Etfw%2525257Ctwcamp%2525255Etweetembed%2525257Ctwterm%2525255E1181537299038953473&ref_url=https%2525253A%2525252F%2525252Fwww.vg.no%2525252F (14/11/2020; does not seem to work with AdGuard)
$removeparam=ref_src
$removeparam=ref_url
! https://www.amazon.com/Razer-Core-Thunderbolt-External-Enclosure/dp/B07CQG2K5K/?tag=makeusw-20&linkCode=ogi&th=1&psc=1 (15/11/2020)
$removeparam=tag,domain=amazon.*|argos.co.uk|tv2.no
! https://www.netonnet.no/art/data-og-nettbrett/nettbrett/lader-og-dokking/apple-thunderboltgigabitethernet/182650.11071/?dclid=CjkKEQiAwMP9BRDt06nU9a_8_bABEiQAL_PHDRXNVIm2rrWiTDbj0z7kJeilQ-_BYvMHw3xzuRcnB2Dw_wcB (15/11/2020)
$removeparam=dclid
! https://www.apple.com/no/shop/product/MD463ZM/A/thunderbolt-til-gigabit-ethernet-adapter?afid=p239%7C1405819&cid=aos-no-aff-ir (15/11/2020)
! https://www.proshop.dk/HyperX-Predator-RGB-ram?cid=64e93f7a-cee2-44d9-911a-37f3eafd7b5f (23/01/2021)
$removeparam=afid
! https://www.digitalimpuls.no/WebPages/Produkt/ProduktInfo.aspx?plid=75672&WebSiteMapNodeID=1000001 (15/11/2020)
$removeparam=WebSiteMapNodeID
! https://cdon.no/elektronikk/apple-thunderbolt-to-gigabit-ethernet-adapter-nettverksadapter-thunderbolt-gigabit-ethernet-p54223599?country=NO&g=20364854 (15/11/2020)
||cdon.$removeparam=g
! https://clips.twitch.tv/HotGenerousBearHeyGirl?tt_content=player_title&tt_medium=clips_embed
$removeparam=tt_content
$removeparam=tt_medium
! https://www.tv2.no/a/10534772?referral=tv2v (27/11/2020)
$removeparam=referral,domain=tv2.no|spotify.com
! https://www.elgiganten.dk/product/lyd-hi-fi/hovedtelefoner/WH1000XM3B/sony-tradlose-around-ear-hovedtelefoner-wh-1000xm3-sort?scid=Pricecomparison8084162610 (27/11/2020)
$removeparam=scid
! https://salming.com/sv-se/produkter/p/1099805-0416/salming-oval-fusion?trackID=79064280 (27/11/2020)
$removeparam=trackID
! https://productkeys.dk/produkt/pokemon-lets-go-pikachu/?dTribesID=9OIiIkbuCBtHQnvUeuU6ZD05WpuicLKP%7Cadtribes%7C11543 (27/11/2020)
$removeparam=dTribesID
! https://www.youtube.com/watch?v=7yk3WDZRcTM&feature=youtu.be (28/11/2020)
||youtube.com^$removeparam=feature
! https://www.pbtech.co.nz/product/MPHSAM00510/Samsung-Galaxy-A51-2020-Dual-SIM-Smartphone-6GB128?qr=pspy (28/11/2020)
||pbtech.$removeparam=qr
! https://shop.bt.com/products/nintendo-switch-hw---neon-red-and-neon-blue--2019-version--10002208-FCM1.html?awc=3043_1606583260_feef24aba0ca5ffbbf513bb8f34cd1be (28/11/2020)
$removeparam=awc
! https://www.onbuy.com/gb/nintendo-switch-62-32gb-touchscreen-wi-fi-blue-grey-red~c9482~p5584084/?exta=pspy (28/11/2020)
$removeparam=exta
! https://www.go2games.com/switch/nintendo-switch-console-fortnite-edition?ranMID=42957&ranEAID=ORHQW7E8X5A&ranSiteID=ORHQW7E8X5A-JzvoI1XaPNAAx901cYMaQw (28/11/2020)
$removeparam=ranMID
$removeparam=ranEAID
$removeparam=ranSiteID
! https://www.jdwilliams.co.uk/shop/switch-neon-inc-rayman-and-spongebob/bm593/product/details/show.action?pdBoUid=3156&pdpClick=true (28/11/2020)
$removeparam=pdBoUid
$removeparam=pdpClick
! https://www.electrodepot.fr/ecouteurs-apple-airpods-2-boitier-de-charge.html?LGWCODE=17449%3B96175%3B2865 (28/11/2020)
$removeparam=LGWCODE
! https://www.son-video.com/article/ecouteurs-true-wireless/apple/airpods-avec-boitier-de-charge?ae=12 (28/11/2020)
||son-video.com^$removeparam=ae
! https://www.boulanger.com/ref/1091513?lgw_code=15556-000000000001091513&xtor=AL-6875-%5B7%5D-%5B1395066878%5D-%5B300x250%5D-%5B%5D-%5B%5D (28/11/2020)
$removeparam=lgw_code
$removeparam=xtor
! https://www.but.fr/produits/0190199098572/Ecouteurs-APPLE-AIR-PODS-2.html?awc=7261_1606583838_a78fea9b309b3f8e9fad6d173d4d0853&xtor=AL-1008-%5Bnotype%5D-%5B295295%5D&SRC=8 (28/11/2020)
$removeparam=SRC
! https://www.inmac-wstore.com/apple-airpods-with-charging-case-2nd-generation-veritables-ecouteurs-sans-fil-avec-micro/p7192806.htm?coagent=737684,1118410&cotracking=101 (28/11/2020)
$removeparam=coagent
$removeparam=cotracking
! https://www.fnac.com/Apple-AirPods-2-avec-boitier-de-charge-Ecouteurs-sans-fil-True-Wireless/a10086709/w-4?ectrans=1&Origin=Awin295295&awc=12665_1606583916_a0dffc62f7c4e34914d0e5660e0c6dcf (28/11/2020)
$removeparam=ectrans
||fnac.com^$removeparam=Origin
! https://www.darty.com/nav/achat/accessoires/casque_ecouteurs/casque_intra-auriculaire/apple_airpods_v2.html?awc=7735_1606583917_4f791edbe7805b48b06ce7131a26b480&ectrans=1&dartycid=aff_295295_generique_awin (28/11/2020)
$removeparam=dartycid
! https://fr.shopping.rakuten.com/offer/buy/5483124993/apple-airpods-2-avec-case-2eme-generation-blanc-mv7n2zm-a.html?bbaid=6680578123&t=6862148 (28/11/2020)
! https://steamcdn-a.akamaihd.net/steam/apps/1293120/ss_260369d8b0c8ab69e3a5a66f78174af4319c4acb.jpg?t=1607504533 (11/12/2020)
$removeparam=bbaid
$removeparam=t,domain=rakuten.com|steamcdn-a.akamaihd.net|duckduckgo.com
! https://blog.archive.org/matching-gifts/?iax=typage
||archive.org^$removeparam=iax
! https://www.paypal.com/myaccount/transaction/details/7CY16898V3123435J?v=1&utm_unptid=&ppid=RT000016&cnac=NO&rsta=no_NO(nb-NO)&cust=&unptid=&calc=24c08e54728d&unp_tpcid=null&page=main%3Aemail%3ART000016&pgrp=main%3Aemail&e=cl&mchn=em&s=ci&mail=sys&appVersion=1.26.0&xt=
$removeparam=ppid
$removeparam=unptid
||paypal.com^$removeparam=calc
$removeparam=unp_tpcid
$removeparam=pgrp
$removeparam=mchn
! https://www.sfgate.com/news/editorspicks/article/French-Laundry-French-Laundry-London-Breed-Newsom-15767882.php?IPID=SFGate-HP-CP-Spotlight
$removeparam=IPID
! http://tubepalm.com/es/videos/swing-out-sister-sub-esp.html?asgtbndr=1
$removeparam=asgtbndr
! https://p3.no/menn-vil-betale-for-a-slikke-kroppsharet-mitt/?draftsforfriends=pGXqum9EFRUyZS5bVsbJuZawWEaabC8L
$removeparam=draftsforfriends
! https://sun9-44.userapi.com/impg/uaRyOJDA2eqOzkYBdnakulVBbAxHpRPkQPDAsw/B6DuJB9cw-A.jpg?size=1002x1080&quality=96&proxy=1&sign=a1819c79828795b28ad58bc27486030e&type=album
.userapi.com/impg^$removeparam=proxy
.userapi.com/impg^$removeparam=type
! https://www.imdb.com/title/tt7826036/?ref_=ttep_ep5
$~xmlhttprequest,removeparam=ref_,domain=imdb.com|amazon.*|primevideo.com|shopbop.com|awesomeopensource.com
! https://www.bloglovin.com/blogs/enestaende-mat-2346432?widget-ref=https://enestaaendemat.no/ (07/12/2020)
$removeparam=widget-ref
! https://www.youtube.com/watch?v=ACb-3n4tRGE&ab_channel=BillyO%27Reilly (07/12/2020)
||youtube.com^$removeparam=ab_channel
! https://www.reuters.com/article/us-apple-cydia-lawsuit-idUSKBN28K310?taid=5fd28550d1225d000133bf89 (10/12/2020)
$removeparam=taid
! https://scontent.fosl3-2.fna.fbcdn.net/v/t1.0-9/107461725_178044047037717_1670568338259435866_o.jpg?_nc_cat=106&ccb=2&_nc_sid=dd9801&_nc_ohc=rwZyfBjoc_gAX-qiWab&_nc_ht=scontent.fosl3-2.fna&oh=250a678cd3d6a37531e9ff24466b2f56&oe=5FF90248 (11/12/2020)
$removeparam=_nc_cat
$removeparam=_nc_sid
! https://www.tipsbladet.dk/nyhed/superliga/cv-afviser-traenerskifte-jeg-har-ikke-talt-med-kristian?eblink=artikel (14/12/2020)
$removeparam=eblink
! https://www.tv2.no/?r=refresh (16/12/2020)
! https://github.com/DandelionSprout/adfilt/discussions/163#discussioncomment-987226
$~xmlhttprequest,removeparam=r,domain=tv2.no|linode.com
! https://contabo.com/?show=vps&utm_source=cj&utm_medium=affiliate&utm_campaign=vps&source=affiliate&AID=12454632&PID=8533995&SID=&CJEVENT=1999e98a465411eb825b03900a180510 (25/12/2020)
$removeparam=AID
$removeparam=CJEVENT
! https://github.com/DandelionSprout/adfilt/discussions/163#discussioncomment-969819
! (Exception: booking.com in Firefox; see #256)
$removeparam=aid,domain=adguard.com
! https://account.microsoft.com/?refd=www.microsoft.com
$removeparam=refd
! https://www.humblebundle.com/?hmb_source=navbar (09/01/2021)
$removeparam=hmb_source
! https://nttxstore.jp/_RH_3550?FMID=ocntop&LID=ocntop&_ga=2.104844229.490267265.1610372894-229139367.1610372894 (11/01/2021)
$removeparam=FMID
$~xmlhttprequest,removeparam=LID
$removeparam=_ga
! https://adguardteam.github.io/AnonymousRedirect/redirect.html?url=https%3A%2F%2Fwww.nytimes.com%2F2021%2F01%2F21%2Fopinion%2Fpublic-transit-funding.html%3Faction%3Dclick%26module%3DWell%26pgtype%3DHomepage%26section%3DEditorials (24/01/2021)
$removeparam=action,domain=nytimes.com|nytimes3xbfgragh.onion
$removeparam=module,domain=nytimes.com|nytimes3xbfgragh.onion
$removeparam=pgtype,domain=nytimes.com|nytimes3xbfgragh.onion
$removeparam=section,domain=nytimes.com|nytimes3xbfgragh.onion
! https://techcrunch.com/2021/02/09/eus-lead-data-supervisor-for-most-of-big-tech-is-still-using-lotus-notes/?guccounter=1&guce_referrer=aHR0cHM6Ly93d3cuZGlnaS5uby8&guce_referrer_sig=AQAAAJnvyfO0iClmtx73_ycersFbfhSLMdJB5kyLHseaWdi9TiXKa3ao3deC8nvfiBm9IQAwmBtL8QaSY7_01D0_zasr2yeupMAku3-KxlDkOxDyxYUx3AQ5Q8Y9C0U16b4NGeZWMVUyVkqEhj-UruGKz5DG1uVu7gBjEoBlwtGYgoQu (12/02/2021)
$removeparam=guccounter
$removeparam=guce_referrer
$removeparam=guce_referrer_sig
! https://my.postnord.no/tracking/73330062019301037?mobile=00000000&signed=30c93bff-3e20-4bca-bedf-d96c464a9328
||postnord.$removeparam=mobile
||postnord.$removeparam=signed
! https://www.nytimes.com/interactive/2020/09/27/us/donald-trump-taxes.html?referringSource=articleShare (28/02/2021)
$removeparam=referringSource
! https://www.computing.co.uk/news/4019233/monzo-learned-lot-self-hosting-kubernetes-wouldn%E2%80%99?im_edp=7467218-78983dec13ce65eb%26campaignname%3DCTG.Daily_RL.EU.A.U&im_company=FAKE%20COMPANY%20NAME (28/02/2021)
$removeparam=im_edp
$removeparam=im_company
! https://www.change.org/p/arkane-encourage-the-release-of-an-unfinished-build-of-arkane-s-half-life-2-return-to-ravenholm-273b1585-73cc-49c7-9d51-09433e172f80/psf/share?source_location=combo_psf&psf_variant=combo&share_intent=1 (28/02/2021)
$removeparam=source_location
$removeparam=psf_variant
! https://accelerateworkshopserverless.splashthat.com/?sc_channel=sm&sc_campaign=startupaccelerate_q3_serverless&sc_geo=emea&sc_country=mult&sc_outcome=reg&trkCampaign=bnl20_accelerate_q3_serverless&trk=bnl20_accelerate_q3_serverless_e&es_id=9ee9c1a102 (28/02/2021)
! https://open.hpi.de/courses/malware2021?tracking_user=74v365zif700sQKXlqj020vyd&tracking_type=news&tracking_id=5ED4ZiWEw48Lft3MGkAag (28/02/2021)
$removeparam=tracking_type
||hpi.de^$removeparam=tracking_id
$removeparam=tracking_user
! https://www.wired.com/story/how-to-solve-a-rubiks-cube-in-5-seconds-or-less/?bxid=5de6860acff06b68651dc0f7&cndid=59299325&esrc=&hasha=43963980a2110b889196f6ae90238cc6&hashb=e7bacab69176108b7edf6b15a2a80087a5eb1fb7&hashc=f0716ab5f4a5ef793da5e3f103cb64e3362c54aedb9630096cfd18f0244b9815&source=EDT_WIR_NEWSLETTER_0_ENGAGEMENT_ZZ (28/02/2021)
$removeparam=bxid
$removeparam=cndid
$removeparam=hasha
$removeparam=hashb
$removeparam=hashc
! https://www.comixology.com/Scooby-Doo-1997-2010/comics-series/353?irgwc=1&tid=IR-affiliate-10451&clickid=VsxVfPSSvxyOWNfwUx0Mo38MUkiXwRwR0xWjW40 (01/03/2021)
$removeparam=irgwc
$removeparam=clickid
! https://www.alibaba.com/toprankedsellers/index.html?spm=a2700.8293689.0.0.2ce267afXoR8Ya&cardId=15000000051127726082&topOfferIds=62108344908&categoryIds=44&tracelog=from_home_category (01/03/2021)
$removeparam=spm
||alibaba.com^$removeparam=categoryIds
$removeparam=tracelog
$removeparam=cardId
! https://metro.co.uk/2017/04/11/hubble-just-spotted-something-massive-coming-out-of-uranus-6567896/?ito=article.desktop.share.top.facebook
$removeparam=ito
! https://es.aliexpress.com/item/4000672272353.html?pvid=c4cdc770-f05a-4b7b-8a50-d8b81efff6c9&_t=gps-id:pcDetailBottomMoreThisSeller,scm-url:1007.13339.169870.0,pvid:c4cdc770-f05a-4b7b-8a50-d8b81efff6c9,tpp_buckets:668%230%23131923%230_668%23808%234094%23200_668%23888%233325%231_668%232846%238113%23646_668%232717%237558%23188_668%231000022185%231000066059%230_668%233468%2315617%23897
$removeparam=pvid
||aliexpress.com^$removeparam=_t
! https://es.aliexpress.com/item/4001349152860.html?gps-id=5547572&scm_id=1007.19201.130907.0&scm=1007.19201.130907.0&scm-url=1007.19201.130907.0
||aliexpress.$removeparam=gps-id
$removeparam=scm_id
$removeparam=scm
$removeparam=scm-url
! https://heathercoxrichardson.substack.com/p/a-new-narrative/comments?token=eyJ1c2VyX2lkIjo4Nzk4NDQyLCJwb3N0X2lkIjoyMTAzMDA1MiwiXyI6ImtkSWlHIiwiaWF0IjoxNjA2NzgxODUxLCJleHAiOjE2MDY3ODU0NTEsImlzcyI6InB1Yi0yMDUzMyIsInN1YiI6InBvc3QtcmVhY3Rpb24ifQ.tTGn1X5uPyuv73zXQEp7JY1cserdlOVCNwshJONiHRw
||substack.com^$removeparam=token
! https://www.bing.com/search?q=hello&form=QBLH&sp=-1&pq=hello&sc=8-5&qs=n&sk=&cvid=49B83A335B1C4884B71B2FAD4A8027A9 (02/03/2021)
||bing.com^$removeparam=form
! https://github.com/DandelionSprout/adfilt/discussions/163#discussioncomment-421689 (02/03/2021)
$removeparam=c[0]
$removeparam=rlz
$removeparam=pcampaignid
$removeparam=igshid
$removeparam=curator_clanid
||steampowered.com^$removeparam=ser
$removeparam=snr
! https://www.bing.com/search?q=hello&sp=-1&pq=hello&sk=&sc=8-5&qs=n (04/03/2021)
||bing.com^$removeparam=sp
||bing.com^$removeparam=sc
$removeparam=sk,domain=bing.com|aliexpress.*
||bing.com^$removeparam=qs
! https://www.trouw.nl/nieuws/het-draagvlak-in-crisistijd-doet-premier-rutte-bijna-zweven-maar-hij-kan-ook-hard-vallen~bf367a86/?referrer=https%3A%2F%2Fwww.theguardian.com%2Fworld%2Fcommentisfree%2F2021%2Fmar%2F04%2Fcovid-derailed-great-hope-dutch-far-right-thierry-baudet (05/03/2021)
$removeparam=referrer,domain=~f4map.com|~deviantart.com
! https://www.bing.com/search?PC=U531&q=hello&FORM=ANNTA1 (05/03/2021)
||bing.com^$removeparam=PC
||bing.com^$removeparam=FORM
! https://rugby.no/finn-din-lokale-klubb/ (05/03/2021)
||maps.googleapis.com/maps/api/js/AuthenticationService.Authenticate^$removeparam=/.*/
||maps.googleapis.com/maps/api/js/QuotaService.RecordEvent^$removeparam=/.*/
! https://ekstrabladet.dk/nyheder/samfund/slut-med-massageannoncer/8498857?account=ebreaking&ext_source=twitter (10/03/2021)
||ekstrabladet.dk^$removeparam=account
$removeparam=ext_source
! https://github.com/DandelionSprout/adfilt/discussions/163#discussioncomment-487427 (17/03/2021)
||tradera.com^$removeparam=transactionalEmail
! https://graphicriver.net/item/invoice-estimation-brief/20668760?iradid=275988&irpid=1288974&iradtype=ONLINE_TRACKING_LINK&irmptype=mediapartner&mp_value1 (17/03/2021)
$removeparam=iradid
$removeparam=irpid
$removeparam=iradtype
$removeparam=irmptype
$removeparam=mp_value1
! https://no.pinterest.com/pin/371476669268114259/?d=t&mt=signupOrPersonalizedLogin (21/03/2021)
||pinterest.*mt=signup$removeparam=d
||pinterest.*mt=signup$removeparam=mt
! https://open.spotify.com/playlist/37i9dQZF1DWXRvPx3nttRN?si=asdf1234567890
||open.spotify.com^$removeparam=si
! https://github.com/DandelionSprout/adfilt/discussions/163#discussioncomment-525100
||wsj.com/*mod=trending$removeparam=mod
$removeparam=surface,domain=nytimes.com|nytimes3xbfgragh.onion
$removeparam=fellback,domain=nytimes.com|nytimes3xbfgragh.onion
$removeparam=req_id,domain=nytimes.com|nytimes3xbfgragh.onion
$removeparam=algo
$removeparam=variant,domain=nytimes.com|nytimes3xbfgragh.onion
$removeparam=imp_id
! https://github.com/DandelionSprout/adfilt/discussions/163#discussioncomment-526736 (25/03/2021)
! https://github.com/DandelionSprout/adfilt/discussions/163#discussioncomment-873926
$removeparam=xid
! ||tcgplayer.com^$removeparam=q (Breaks search result bookmarks and search queries)
||tcgplayer.com^$removeparam=productLineName
||tcgplayer.com^$removeparam=setName
! https://www.pcgamer.com/hackers-are-exploiting-call-of-duty-warzone-cheaters-with-malware/?__twitter_impression=true (01/04/2021)
$removeparam=__twitter_impression
! https://www.academia.edu/9513828/Open_Theism_and_the_Millennial_in_the_Pew_Evangelical_Theology_and_Marketing_in_the_Age_of_the_World_Wide_Web?email_work_card=view-paper (02/04/2021)
$removeparam=email_work_card
! https://www.behance.net/gallery/40969175/MELOWY-MAGAZINE-FABBRI?tracking_source=search_projects_recommended%7Cvanni%20fabbri (06/04/2021)
$removeparam=tracking_source
! https://www.theverge.com/2021/4/16/22387492/google-floc-ad-tech-privacy-browsers-brave-vivaldi-edge-mozilla-chrome-safari?scrolla=5eb6d68b7fedc32c19ef33b4 (20/04/2021)
$removeparam=scrolla
! https://dagligvarehandelen.no/sites/default/files/styles/wysiwyg_full_width/public/70x100_cocashake_skisse_0.jpg?itok=k31KtKuB (30/04/2021)
$removeparam=itok
! https://www.nytimes.com/2021/04/27/business/media/new-york-post-kamala-harris.html?smtyp=cur&smid=fb-nytimes&fbclid=IwAR1mH8MOV2qhIoD5pdX9gbEWedBAdS4sYOXB0yHJi3tZZ6Hg5r0Us-EEv0s (28/04/2021)
$removeparam=smtyp
! https://techcrunch.com/2021/04/30/riot-games-updates-its-privacy-notice-to-start-developing-voice-comms-moderation/?tpcc=ECTW2020
$removeparam=tpcc
! https://www.rightmove.co.uk/properties/84442384?sc_id=36495303&onetime_FromEmail=true&cid=5a1f743a-db62-42d8-9d64-7fc6f01b0f2a&csg=Cns44tNNx5uSB2wZD7erMYDKCPA8xMUpm8yGDzQtyn3FSnEhKa#/ (06/05/2021)
$removeparam=onetime_FromEmail
! https://www.humblebundle.com/store/?linkID=&mcID=102:UUIDHERE:ot:UUIDHERE:1 (06/05/2021)
||humblebundle.com^$removeparam=linkID
||humblebundle.com^$removeparam=mcID
! https://cdnb.artstation.com/p/assets/images/images/030/045/719/large/abhishek-karmakar-b56f0421b303b8d9016f022d17330898.jpg?1599443127 (06/05/2021)
||artstation.com^$removeparam=/^[0-9]/
! https://www.wired.com/story/oversight-board-to-facebook-not-going-to-do-your-dirty-work/?mbid=social_twitter
$~xmlhttprequest,removeparam=mbid
! https://github.com/DandelionSprout/adfilt/discussions/163#discussioncomment-706290
||bandcamp.com^$removeparam=from
! https://github.com/DandelionSprout/adfilt/discussions/163#discussioncomment-711131
$removeparam=itid
! https://github.com/DandelionSprout/adfilt/discussions/163#discussioncomment-715449
$removeparam=full_trSrc
$removeparam=cmpg_for_af
$removeparam=ICID
$removeparam=icid
$removeparam=hmb_campaign
$removeparam=hmb_medium
$removeparam=/^utm-/
$removeparam=aff
$removeparam=mc_cid
$removeparam=mc_eid
$removeparam=/^intgrtn_/
$removeparam=afftag
$removeparam=/^affid/i,domain=~redir.tradedoubler.com
! https://www.thedailybeast.com/russian-doctor-alexander-murakhovsky-who-lied-about-navalny-poisoning-disappeared-in-the-woods?source=articles&via=rss
||thedailybeast.com^$removeparam=via
! https://www.imdb.com/title/tt10048342/mediaviewer/rm2490882049/?context=default
||imdb.com^$removeparam=context
! https://github.com/DandelionSprout/adfilt/discussions/163#discussioncomment-728592
$removeparam=referralCode
$removeparam=LSNPUBID
||udemy.com^$removeparam=publisher_id
||udemy.com^$removeparam=website_id
$removeparam=admitad_uid
$removeparam=traffic_type
$removeparam=traffic_id
$removeparam=dcmp
||hostinger.$removeparam=session
! https://github.com/DandelionSprout/adfilt/discussions/163#discussioncomment-737564
$removeparam=clickOrigin
$removeparam=clickSR
$removeparam=istCompanyId
$removeparam=istFeedId
$removeparam=istItemId
$removeparam=istBid
$removeparam=cmpid
||riverisland.com^$removeparam=sem
||marksandspencer.com^$removeparam=bvstate
! https://www.theguardian.com/technology/2021/may/11/apple-accused-of-breaking-uk-competition-law-by-overcharging-for-apps?CMP=Share_AndroidApp_Other
$removeparam=CMP
! https://github.com/DandelionSprout/adfilt/discussions/163#discussioncomment-750434
||microsoft.com^$removeparam=epi
$removeparam=OCID
$removeparam=tduid,domain=~redir.tradedoubler.com
$removeparam=irclickid
$removeparam=irclicid
$removeparam=intcmp
||xbox.com^$removeparam=xr
$removeparam=sourceid,domain=~google.*
$removeparam=sharedid
$removeparam=affiliates_ad_id
$removeparam=campaign_id,domain=~kochava.com
$removeparam=wmlspartner
$removeparam=wpa_bd
$removeparam=wpa_pg_seller_id
$removeparam=wpa_ref_id
$removeparam=wpa_tag
$removeparam=wpa_aux_info
$removeparam=wpa_pos
$removeparam=wpa_plmt
$removeparam=wpa_aduid
$removeparam=aff_key
$removeparam=sscid
$removeparam=rmmds
$removeparam=act_poa
$removeparam=utmid
||deepdiscount.com^$removeparam=bid
$removeparam=pjxsource
||deepdiscount.com^$removeparam=medium
$removeparam=pjxaffiliate_id
$removeparam=pjxclick_id
$removeparam=clickId
$removeparam=msclkid
! https://github.com/DandelionSprout/adfilt/discussions/163#discussioncomment-750307
$removeparam=rid,domain=giphy.com
||rightmove.co.uk^$removeparam=csg
! https://m.lightinthebox.com/no/p/kvinners-svart-blaa-groenn-vintage-maxi-kjole-langarmet-troeye-med-v-hals_p4298383.html?currency=NOK&litb_from=paid_adwords_shopping&sku=1_6920%7C2_286&country_code=no&adword_mt&adword_ct=496040937781&adword_kw&adword_pos&adword_pl&adword_net=u&adword_tar&adw_src_id=7573621213_12242627236_117670768776_pla-402619472328 (22/05/2021)
$removeparam=litb_from
$removeparam=/^adword_/
$removeparam=adw_src_id
! https://www.ericgown.no/A-Formet-Prinsesse-V-Hals-Gulvlengde-Chiffong-Selskapskjoler-Med-Frynse-Splittet-Front-017216976-g216976/?ggsub=pl&ggntk=g&ggcid=426150376762&ggkey&ggpos&ggdev=m&ggdevm&ggplm&ggtgt¤cy=EUR (22/05/2021)
$removeparam=ggsub
$removeparam=ggntk
$removeparam=ggcid
||ericgown.no^$removeparam=ggkey
$removeparam=ggpos
$removeparam=ggdev
$removeparam=ggdevm
$removeparam=ggplm
$removeparam=ggtgt
! https://github.com/DandelionSprout/adfilt/discussions/163#discussioncomment-766124
||thegay.com^$removeparam=/(promo|fw)/
! https://github.com/DandelionSprout/adfilt/discussions/163#discussioncomment-770867
$removeparam=ftag
||gamespot.com^$removeparam=/(ServiceType|UniqueID|PostType|TheTime)/
! https://github.com/DandelionSprout/adfilt/discussions/163#discussioncomment-771456
$removeparam=/^__xts__/
$removeparam=custlixnkid
$removeparam=akmClientCountry
||banggood.com^$removeparam=p
$removeparam=pk_campaign
$removeparam=hss_channel
$removeparam=mktids
$removeparam=mc_tc
$removeparam=ns_mchannel
$removeparam=ns_source
$removeparam=ns_campaign
$removeparam=ns_linkname
$removeparam=ns_fee
||bbc.$removeparam=pinned_post_locator
||bbc.$removeparam=pinned_post_asset_id
||bbc.$removeparam=pinned_post_type
$removeparam=zanpid
||thehackernews.com^$removeparam=_m
$removeparam=hvadid
$removeparam=hvpos
$removeparam=hvnetw
$removeparam=hvrand
$removeparam=hvpone
$removeparam=hvptwo
$removeparam=hvqmt
$removeparam=hvdev
$removeparam=hvdvcmdl
$removeparam=hvlocint
$removeparam=hvlocphy
$removeparam=hvtargid
$removeparam=adgrpid
! https://github.com/DandelionSprout/adfilt/discussions/163#discussioncomment-783185
$removeparam=wgu
$removeparam=wgexpiry
$removeparam=fsrc
$removeparam=ocid
$removeparam=Referrer
||apple.com^$removeparam=fnode
||netflix.com^$removeparam=trkid
||disneyplus.com^$removeparam=linkId
$removeparam=ad_pvid
$removeparam=algo_pvid
$removeparam=algo_expid
$removeparam=btsid
$removeparam=ws_ab_test
$removeparam=spLa
||epidemicsound.com^$removeparam=_us
||epidemicsound.com^$removeparam=_usx
$removeparam=affTrack
$removeparam=afftrack
$removeparam=shrsl_analytics_sscid
$removeparam=shrsl_analytics_sstid
! https://go.nordvpn.net/aff_c?offer_id=129&aff_id=614&aff_sub=06VOOBfmFXpFAcqqIHYIr28&aff_sub2=blackfriday.com
$removeparam=/^AFF_ID/i,domain=~nordvpn.net
$removeparam=/^aff_sub/
||photojobz.com^$removeparam=hop
$removeparam=SSAID
$removeparam=affsrc
$removeparam=/^cm_mmc/
$removeparam=aff_ref
||aliexpress.com^$removeparam=initiative_id
$removeparam=hsCtaTracking
||microsoft.com^$removeparam=headerid
||microsoft.com^$removeparam=/^AAAA/
||babbel.com^$removeparam=bsc
||babbel.com^$removeparam=btp
$removeparam=tblci
$removeparam=tcid
$removeparam=/^dv_adwords_/
||keepersecurity.com^$removeparam=/^hsa_/
$removeparam=adid
$removeparam=wdorigin
||microsoft.com^$removeparam=ru
||microsoft.com^$removeparam=destrt
$removeparam=twitchReferral
! ||www.google.*/search?$removeparam=client (Breaks search-term suggestions)
$removeparam=/^shared/,domain=seura.fi|suomenkuvalehti.fi|kotiliesi.fi|tekniikanmaailma.fi|anna.fi|rakennusmaailma.fi
$removeparam=origin,denyallow=platform.twitter.com,domain=yle.fi|flaticon.com|drop.com|symbolab.com|archive.org
$removeparam=elqTrackId
||discshop.fi^$removeparam=/^ad/
||hammacher.com^$removeparam=promo
! https://www.netflix.com/watch/80057171?trackId=14170056&tctx=2%2C0%2Cad3cd321-a42b-461e-81d3-b18c51559559-25047246%2Ce7fede3c-e54d-4941-9849-8fb5d51dbada_37683809X10XX1622546150880%2Ce7fede3c-e54d-4941-9849-8fb5d51dbada_ROOT%2C
||netflix.com^$removeparam=trackId
$removeparam=tctx
! https://www.archdaily.com/962593/house-for-a-pianist-pedra-liquida?ad_medium=gallery
$removeparam=ad_medium
! https://github.com/DandelionSprout/adfilt/discussions/163#discussioncomment-831247
||malwarebytes.com^$removeparam=guard
||malwarebytes.com^$removeparam=x-source
! https://github.com/DandelionSprout/adfilt/discussions/163#discussioncomment-810773
$removeparam=adgroup
$removeparam=ads_name
$removeparam=ad_type
$removeparam=CAWELAID
$removeparam=partition_id
||rei.com^$removeparam=target_id
$removeparam=adgroup_id
$removeparam=channel,domain=rei.com|squarespace.com
||squarespace.com^$removeparam=subchannel
$removeparam=rlsatarget
$removeparam=targetid
$removeparam=elqCampaignId
$removeparam=dc_campid
$removeparam=dc_adgroupid
! https://chggtrx.com/clk.trk?CID=267627&AFID=304351
$removeparam=AFID,domain=~chggtrx.com
$removeparam=adgroupid
||humblebundle.com^$removeparam=partner
$removeparam=AFFNAME
$removeparam=ACRID
$removeparam=ASUBID
$removeparam=ASID
$removeparam=cm_sp
$removeparam=cm_re
$removeparam=/^mbsy/
$removeparam=campaignid
||mechanicalkeyboards.com^$removeparam=creator
$removeparam=mkref
||play.google.com^$removeparam=shortlink
||audible.$removeparam=source_code
||audible.$removeparam=ipRedirectFrom
||audible.$removeparam=ipRedirectOriginalURL
$removeparam=refer_code
$removeparam=loc
$removeparam=acampID
||google.$removeparam=prds
$removeparam=pj_creativeid
$removeparam=pj_publisherid
||dustdeal.nl^$removeparam=tracker
$removeparam=track_campaignid
$removeparam=track_adgroupid
$removeparam=track_keyword
!!!||booking.com^$removeparam=label (Breaks slide-in hotel review feeds)
||bloomberg.com^$removeparam=sref
! https://www.verizon.com/deals/?SID=908A84AE-9041-433A-8EC7-CD9AB19B08F4&vendorid=CJM&PUBID=746431&cjevent=fb375adac6a811eb838200b20a18050d&cjdata=MXxZfDB8WXww
||verizon.com^$removeparam=vendorid
! https://www.coolblue.nl/nokia?cmt=c_b%2Ccp_386708701%2Caid_1235851292258762%2Ct_kwd-77240886961109%3Aloc-129%2Cn_s%2Cd_c%2Clp_2488
$removeparam=cmt
! https://www.discoveryplus.dk/programmer/fk-ikke-med-piger?idp=Facebook&responseCode=212 (18/06/2021)
||discoveryplus.$removeparam=idp
||discoveryplus.$removeparam=responseCode
! https://www.ellos.no/?extcmp=05_NO_Aff_Imp
$removeparam=extcmp
! https://www.staypro.no/?at_gd=2B9E397233E3B6D5EF466E3BC0AC42F1885D8A50
$removeparam=at_gd
! https://fernerjacobsen.no/?epi=STS-SHP--FernerJacobsen-Logo%7Cxid%3Afr1624121412114eah
$removeparam=epi,domain=fernerjacobsen.no|webhallen.com
! https://www.gamerevolution.com/guides/685650-windows-11-tpm-2-0-pc-cant-run-install?amp (No one on fast networks really likes AMP, least of all uBlock Origin + 'Firefox for Android' users; 25/06/2021)
$removeparam=amp
! https://inews.co.uk/opinion/matt-hancock-health-bill-huge-row-no10-boris-johnson-1067703?_gl=1*1l47swq*_ga*OUp3WnF6dklkRHNVaHBfaDJmUnFHSkR5VFBtMzV5enpSWk1XUENzWlNENGg2VmdQZHZoRVFfV3BmNXV2ZjREYQ
$removeparam=_gl
! https://github.com/DandelionSprout/adfilt/discussions/163#discussioncomment-895430
$removeparam=gtmtrack
! https://www.hs.fi/talous/art-2000006474289.html?share=095cb51bfd3619323ff183dd633ae8ab
||hs.fi^$removeparam=share
! https://github.com/DandelionSprout/adfilt/discussions/163#discussioncomment-899565
$removeparam=vifAdCount
$removeparam=vifNav
! https://www.siteground.es/index.htm?afcode=dfe40d3ff0fcb7398f1c2a21ccc60504
$removeparam=afcode
! https://bcy.net/item/detail/6871525119949282312?_source_page=hashtag
$removeparam=_source_page
! https://www.voxi.co.uk/plans#plans?cid=aff-UK_20_7_P_X_A_J_D_VOXI_BAU_Drive_digidip%20UK%20and%20USA%20-%20Incentivized_Native_PAYG-FSIM_NA_NA_BAU_NA_NA_NA&vfadid=10951_249371
$removeparam=vfadid
! https://www.washingtonpost.com/gdpr-consent/?next_url=https%3a%2f%2fwww.washingtonpost.com%2fworld%2f2021%2f06%2f29%2fcanada-heat-dome-deaths%2f%3foutputType%3damp&outputType=amp
&outputType=amp^$removeparam=outputType
! https://www.hulu.com/welcome?orig_referrer=https%3A%2F%2Fduckduckgo.com%2F
$removeparam=orig_referrer
! https://www.detur.fi/?AgentCode=NAPSU
$removeparam=AgentCode
! https://www.loistoristeilyt.fi/?agency=napsu
$removeparam=agency
! https://www.nazar.fi/?AgencyNbr=1233
$removeparam=AgencyNbr
! https://scandjet.fi/?agentcodeweblink=Napsu
$removeparam=agentcodeweblink
! https://www.tui.fi/?agent=napsu
||tui.$removeparam=agent
! https://www.engadget.com/onedrive-windows-64-bit-preview-222528824.html?ncid=txtlnkusaolp00000618
$removeparam=ncid
! https://www.f-secure.com/en/home/products/freedome?ecid=10588&adcid=10588
$removeparam=ecid
$removeparam=adcid
! https://www.gamereactor.fi/?sid=39feac60637556f2d1f67482abf2b1ea
$~xmlhttprequest,~script,removeparam=sid
! https://spreadprivacy.com/duckduckgrowing/?s=pr-hd
||spreadprivacy.com^$removeparam=s
! https://www.marvel.com/insider?Osocial=YT&CID=MarvelInsider
$removeparam=Osocial
! https://www.hp.com/us-en/shop/slp/weekly-deals?jumpid=ma_home_hero_na_1_210623
||hp.com^$removeparam=jumpid
! https://www.nytimes.com/2008/12/16/sports/othersports/16beckey.html?adxnnl=1&adxnnlx=1257549224-XSk5v9i4LDrKlVwQmlgO8A&
$removeparam=/^adxnnl/
! https://github.com/DandelionSprout/adfilt/discussions/163#discussioncomment-972519
||aliexpress.$removeparam=/^aff_/
||aliexpress.$removeparam=tt
||aliexpress.$removeparam=terminal_id
$removeparam=tmLog
$removeparam=aem_p4p_detail
$removeparam=algo_exp_id
$removeparam=mkt_tok
$removeparam=/^amp;/
! https://github.com/DandelionSprout/adfilt/discussions/163#discussioncomment-1004671
$removeparam=ampcid
! https://github.com/DandelionSprout/adfilt/discussions/163#discussioncomment-1015504
||walmart.com^$removeparam=veh
$removeparam=affname
$removeparam=MID
! https://github.com/DandelionSprout/adfilt/discussions/163#discussioncomment-1018250
||reddit.com^$removeparam=ved
! https://github.com/DandelionSprout/adfilt/discussions/163#discussioncomment-1018655
||hinta.fi^$removeparam=v
@@||hinta.fi/lib/$removeparam=v
! https://www.bbc.co.uk/news/uk-57892934?at_medium=custom7&at_custom4=2CB46890-EAAD-11EB-AC49-99003A982C1E&at_custom3=BBC+News&at_custom1=%5Bpost+type%5D&at_campaign=64&at_custom2=facebook_page&fbclid=IwAR2wR9VZ_1-lFkKWtkQP6t__s4wHQ_lAM8yggT7B_RZpi7A5HVi6oow34-A
||bbc.$removeparam=at_medium
||bbc.$removeparam=at_custom1
||bbc.$removeparam=at_custom2
||bbc.$removeparam=at_custom3
||bbc.$removeparam=at_custom4
||bbc.$removeparam=at_campaign
! https://homemcr.org/production/the-war-of-the-worlds/?dm_i=6OM7%2CA1RR%2C21FCIX%2C17EEV%2C1
||homemcr.org$removeparam=dm_i
! https://www.greatrun.org/train-and-prepare/training-plans/?eid=AJ935930567982484926441023zzzzz64bccfd443fc61ff2c06e3cf8c7b889a2061064e5d5db55e171241354f241bed00
$~xmlhttprequest,removeparam=eid
! https://github.com/DandelionSprout/adfilt/discussions/163#discussioncomment-1031533
||simplelogin.io^$removeparam=slref
||privateinternetaccess.com^$removeparam=channel
||ledger.io^$removeparam=r
$removeparam=cjevent
||roboform.com^$removeparam=rec
$removeparam=nr_email_referer
||hak5.org^$removeparam=rfsn
! https://www.xbox.com/en-us/games/all-games?cat=onsale&epi=775ca3b8881c19ecd5bee1862d0276b0c18d37761d
||xbox.com^$removeparam=epi
! https://www.bing.com/search?pc=MOZI&q=ublock%20origin%20github
||bing.com/search^$removeparam=pc
! https://github.com/DandelionSprout/adfilt/discussions/163#discussioncomment-1046231
$removeparam=in_source
$removeparam=srnd
! https://github.com/DandelionSprout/adfilt/discussions/163#discussioncomment-1061792
$removeparam=as_src
$removeparam=coid
$removeparam=edsacid
! https://github.com/DandelionSprout/adfilt/discussions/163#discussioncomment-1084659 (03/08/2021)
$removeparam=index,domain=nytimes.com|nytimes3xbfgragh.onion
$removeparam=pool,domain=nytimes.com|nytimes3xbfgragh.onion
$removeparam=region,domain=nytimes.com|nytimes3xbfgragh.onion
! https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRTQ_thTIPr-4kGYMHEyfPeD9YN_0fwvx4-fQ&usqp=CAU
||gstatic.com^$removeparam=usqp
! https://www.gog.com/promo/rerelease_ultima_underworld_and_syndicate?pp=b2a10a6c3dcadb10c8ffd734c1bab896d55cf0ec (06/08/2021)
||gog.com^$removeparam=pp
! https://apkpure.com/google-play-services/com.google.android.gms/download/212621015-APK?from=popup%2Fversion
||apkpure.com^$removeparam=from
! https://github.com/DandelionSprout/adfilt/discussions/163#discussioncomment-1141831
||roblox.com^$removeparam=refPageId
! https://github.com/DandelionSprout/adfilt/discussions/163#discussioncomment-1142244
||imdb.com^$removeparam=/^pf_rd_/
||taxscouts.$removeparam=referralSource
||ting.com^$removeparam=lpn
||bestbuy.com^$removeparam=nrtv_cid
$removeparam=/^subId/i,domain=bestbuy.com|ftd.com|mintmobile.com|secretlab.*|shopbop.com
$removeparam=/^adjust_/
||newegg.com^$removeparam=quicklink
||newegg.com^$removeparam=nm_mc
$removeparam=action_type_map
$removeparam=/^bsft_/
||slickdeals.net^$removeparam=bsencid
||target.com^$removeparam=clkid
||hp.com^$removeparam=adcampaigngroup
||dell.com^$removeparam=dgc
||dell.com^$removeparam=VEN1
||dell.com^$removeparam=nclid
||dell.com^$removeparam=gacd
||expedia.com^$removeparam=ref_id
||expedia.com^$removeparam=my_ad
||gamestop.com^$removeparam=sourceID
$removeparam=/^dpg_/
! https://github.com/DandelionSprout/adfilt/discussions/163#discussioncomment-1143347
||nytimes.com^$removeparam=rank
! https://www.asahi.com/sp/articles/ASP8K5CZ3P8KUTFK011.html?iref=comtop_7_01
||asahi.com^$removeparam=iref
! https://github.com/DandelionSprout/adfilt/discussions/163#discussioncomment-1151326
||malwarebytes.com^$removeparam=/x-source$/
! https://github.com/DandelionSprout/adfilt/discussions/163#discussioncomment-1155198
$removeparam=sm12
$removeparam=ts,domain=x-kom.pl|al.to|combat.pl
$removeparam=token,domain=x-kom.pl|al.to|combat.pl
! https://github.com/DandelionSprout/adfilt/discussions/163#discussioncomment-1159362
||aws^$removeparam=did
! https://github.com/DandelionSprout/adfilt/discussions/163#discussioncomment-1169570
$removeparam=elq
$removeparam=elqaid
$removeparam=elqat
$removeparam=elqah
$removeparam=elqcst
$removeparam=elqcsid
||ozon.ru^$removeparam=advert
||mediamarket.$removeparam=rbtc
||sitepoint.com^$removeparam=fromBlog
||sitepoint.com^$removeparam=campaign
$removeparam=/^mtm_/
$removeparam=pk_medium
$removeparam=pk_source
$removeparam=pk_content
$removeparam=pk_kwd
$removeparam=/^ga_/
$removeparam=_hsenc
$removeparam=_hsmi
$removeparam=__hstc
$removeparam=__hssc
$removeparam=__hsfp
$removeparam=dgcid
$removeparam=/^hsa_/
$removeparam=gws_rd
||msn.com^$removeparam=ignorejs
$removeparam=sr_share
||forbes.com^$removeparam=sh
$removeparam=twclid
||yahoo.com^$removeparam=soc_src
||yahoo.com^$removeparam=soc_trk
||euronews.com^$removeparam=_ope
$removeparam=/^ds_/
$removeparam=Adgroup
$removeparam=Adposition
$removeparam=aff_track
$removeparam=adposition
! https://github.com/DandelionSprout/adfilt/discussions/163#discussioncomment-1185036
||qvc.com^$removeparam=sc
||belk.com^$removeparam=start
! https://github.com/DandelionSprout/adfilt/discussions/163#discussioncomment-1203873
||blue-tomato.com^$removeparam=/^(varid|campaign|ia-pkpmtrack|zanox|_)/
||spartoo.$removeparam=/^(sx|track_id)/
! https://github.com/DandelionSprout/adfilt/discussions/163#discussioncomment-1206280
$removeparam=impression_id,domain=nytimes.com|nytimes3xbfgragh.onion
||microcenter.com^$removeparam=rf
! https://github.com/DandelionSprout/adfilt/discussions/163#discussioncomment-1212122
$removeparam=name,domain=nytimes.com|nytimes3xbfgragh.onion
! https://olympics.com/tokyo-2020/en/olympian-paralympian-experiences?gbraid=CjgKCAjwpf2IBhBIEigACfcQDju6R3TH1DL6Yi3-BaKiXeusYGTi1Q35AZa0I0iqhLV19OZrGgLEhw&wbraid=CjgKCAjwpf2IBhBIEigACfcQDju6R3TH1DL6Yi3-BaKiXeusYGTi1Q35AZa0I0iqhLV19OZrGgLEhw
$removeparam=gbraid
$removeparam=wbraid
! https://www.wired.co.uk/article/google-chrome-browser-data?mbid=social_facebook
$~xmlhttprequest,removeparam=mbid
! https://business.udemy.com/resources/hybrid-workplace-webinar/?btn=ub-smartbar
||udemy.com^$removeparam=btn
! https://en.as.com/en/2021/08/23/soccer/1629727141_093723.html?omnil=resrelart
! https://en.as.com/tag/lionel_messi/a?id_externo_noti=mod_ficha
! https://as.com/futbol/2021/08/24/primera/1629781727_235298.html?m1=cG9ydGFkYV9wb3J0YWRh&m2=QUNUVUFMSURBRA%3D%3D&m3=NA%3D%3D&m4=bm9ybWFs&m5=MjI%3D&m1=cG9ydGFkYV9wb3J0YWRh&m2=QUNUVUFMSURBRA%3D%3D&m3=NQ%3D%3D&m4=bm9ybWFs&m5=MjI%3D
||as.com^$removeparam=omnil
||as.com^$removeparam=id_externo_noti
||as.com^$removeparam=/^m[0-9]/
! https://cloud.ibm.com/catalog/services/watson-studio?cm_mmca1=000026UJ&cm_mmca2=10006555&cm_mmca3=M12345678&cvosrc=email.Newsletter.M12345678&cvo_campaign=000026UJ&cvo_crid=522643131497
$removeparam=cvosrc
$removeparam=/^cvo_/
! https://github.com/DandelionSprout/adfilt/discussions/163#discussioncomment-1239932
$removeparam=ads_params
! https://www.udemy.com/courses/search/?q=data+structures&kw=data+struc
||udemy.com^$removeparam=kw
! https://github.com/DandelionSprout/adfilt/discussions/163#discussioncomment-1263630
://surfshark.com^$removeparam=transaction_id
||surfshark.com^$removeparam=offer_id
||surfshark.com^$removeparam=affiliate_id
$removeparam=recurring_goal_id
! https://blackfriday.com/stores/black-friday
$removeparam=CID,domain=burpee.com|chegg.com|express.com|farmandfleet.com|marvel.com|mcafee.com|overstock.com|pepboys.com|puritan.com|rosettastone.com|samsung.com|shutterfly.com|staples.com|teleflora.com|ulta.com|virginatlantic.com|vrbo.com|walgreens.com
$removeparam=DZID,domain=autoanything.com
$removeparam=ECID,domain=boostmobile.com
$removeparam=PID,domain=1800getlens.com|ae.com|allmodern.com|applevacations.com|ashford.com|autoanything.com|autodesk.com|bedbathandbeyond.com|booksamillion.com|boscovs.com|buschgardens.com|cheapcaribbean.com|chicos.com|choicehotels.com|ecampus.com|expedia.com|express.com|factoryoutletstore.com|farmandfleet.com|hammacher.com|intuit.com|jockey.com|kennethcole.com|landsend.com|lenovo.com|lens.com|mcafee.com|monoprice.com|overstock.com|perfumania.com|samsung.com|sears.com|sierra.com|soma.com|staples.com|teleflora.com|ulta.com|verizon.com|virginatlantic.com|vistaprint.com|walgreens.com|wayfair.com|whitehouseblackmarket.com|wwe.com|yahoo.com|zchocolat.com
$removeparam=SID,domain=ae.com|anntaylor.com|applevacations.com|ashford.com|autodesk.com|bedbathandbeyond.com|booksamillion.com|cheapcaribbean.com|chegg.com|chggtrx.com|ecampus.com|expedia.com|express.com|intuit.com|jockey.com|loft.com|mcafee.com|norton.com|overstock.com|perfumania.com|samsung.com|sierra.com|staples.com|taskrabbit.com|teleflora.com|verizon.com|vistaprint.com|walgreens.com|wwe.com|yahoo.com|zchocolat.com|zulily.com
$removeparam=adref,domain=ancestry.*
$removeparam=acid,domain=lenovo.com
$removeparam=aid,domain=brownells.*|viator.com
$removeparam=camp,domain=calvinklein.*|dickssportinggoods.com|dockers.com|dressbarn.com|lanebryant.com|levi.com|maurices.com|worldmarket.com
$removeparam=channelref,domain=asos.com
$removeparam=clickref,domain=ancestry.*|chewy.com|expedia.com
$removeparam=cmp,domain=agentprovocateur.com|brooksbrothers.com|cbc.ca|hulu.com
$removeparam=cp,domain=converse.com|nike.com
$removeparam=ecmp,domain=4wheelparts.com
$removeparam=kc,domain=autoanything.com
$removeparam=/^linkshareid/i,domain=bloomingdales.com|macys.com
$removeparam=mc,domain=bose.*
$removeparam=mcid,domain=bedbathandbeyond.com|enterprise.com|textbooks.com|viator.com
$removeparam=mid,domain=agentprovocateur.com|columbia.com|dxl.com|hanes.com|josbank.com|onehanesplace.com|saksfifthavenue.com|saksoff5th.com|sorel.com|verabradley.com
$removeparam=mktvar002,domain=autodesk.com
$removeparam=mp_id,domain=blinds.com
$removeparam=ogmap,domain=coach.com|loft.com
$removeparam=ogmeas,domain=lanebryant.com
$removeparam=partid,domain=bellacor.com
$removeparam=/^partnerid/i,domain=1800contacts.com|al.to|allenedmonds.com|bloomingdales.com|combat.pl|famousfootwear.com|macys.com|naturalizer.com|shoes.com|x-kom.pl
$removeparam=pid,domain=123inkjets.com|bergfreunde.*|play.google.com|samsclub.com|th.bing.com
$removeparam=/^pubcid/i,domain=ashford.com
$removeparam=/^pubid/i,domain=conrad.de|express.com|ftd.com|verizon.com|vineyardvines.com
$removeparam=/^pubname/i,domain=anntaylor.com|ashford.com|bloomingdales.com|express.com|famousfootwear.com|farmandfleet.com|hottopic.com|loft.com|naturalizer.com|samsclub.com
$removeparam=/^publisher/i,domain=asos.com|blissworld.com|bose.*|burkesoutlet.com|josbank.com|kipling-usa.com|lensrentals.com|metmuseum.org|petsupplies.com|phonesoap.com|riteaid.com|shutterfly.com|tous.com|untilgone.com|virginatlantic.com
$removeparam=pubref,domain=asos.com
$removeparam=pzid,domain=emirates.com
$removeparam=/^refID/i,domain=allmodern.com|calphalon.com|priceline.com|wayfair.com|yankeecandle.com
$removeparam=/^siteid/i,domain=agentprovocateur.com|amerimark.com|anntaylor.com|asos.com|awd-it.*|gap.com|barenecessities.com|beautyencounter.com|buckle.com|burpee.com|chacos.com|coursera.org|dxl.com|dyson.com|elfcosmetics.*|famousfootwear.com|finishline.com|freetaxusa.com|gapcanada.ca|hanes.com|hotwire.com|hulu.com|jcrew.com|josbank.com|kobo.com|lanebryant.com|loft.com|magazines.com|maurices.com|merrell.com|newbalance.com|nordstrom.com|officedepot.com|onehanesplace.com|radissonhotelsamericas.com|saksfifthavenue.com|saksoff5th.com|samash.com|samsclub.com|saucony.com|sharperimage.com|thingsremembered.com|thrifty.*|timeformecatalog.com|verabradley.com|vivaterra.com|wine.com|yoox.com
$removeparam=/^srcCode/i,domain=jcrew.com|magellans.com|teleflora.com|tigerdirect.com
$removeparam=scd,domain=ashleystewart.com
$removeparam=CJPIXEL
$removeparam=LSNPUBNAME
$removeparam=affiliateID
$removeparam=affiliate_id
$removeparam=affiliate_location_id
$removeparam=affiliateid
$removeparam=afn_sr
$removeparam=cjdata
$removeparam=cjeventid
$removeparam=cjpixel
$removeparam=click_id
$removeparam=cm_soc
$removeparam=o_lid
$removeparam=o_sch
$removeparam=o_xid
! http://www.bodenusa.com/?tc_ch=affs&tc_ve=ppj&code=X3W6&tc_so=8439&tc_me=cr&tc_ca=na&tc_au=na&tc_cr=2-420132&tc_campid=na&tc_adgroupid=na&tc_kwid=na&tc_matchid=na
$removeparam=/^tc_/,domain=bodenusa.com
! https://www.att.com/wireless/?wtExtndSource=8807380
$removeparam=wtExtndSource
! https://casper.com/?coupon_code_amount=50&coupon_code&partner_hero_name&promo_code&gwlurl=https%3A%2F%2Fcasper.com%2F%3Fclickid%3DwVS0-ry5EV79w7lVgyz7gRQMUkg3cwUdzw4SWQ0%26irgwc%3D1%26utm_medium%3Daffiliate%26utm_source%3Dap_ir%26cvo_placement%3Dlandingpage%26coupon_code_amount%3D50%26cvosrc%3Daffiliate.-ap_ir.COU_OFFERS50%26utm_campaign%3Dnano%26coupon_code%3DOFFERS50%26partner_hero_name%3DOFFERS50%26utm_content%3DCOU_OFFERS50%26cvo_campaign%3DCOU%26cvo_creative%3DOnline%2520Tracking%2520Link%26utm_term%3D%26promo_code%3DOFFERS50%26cvo_country%3DNAM%26cvo_product%3DMAT%26clickid%3DS2JWRT0fsxyIRwNxiAS6PRWLUkBTve0%253A4xL1Ws0%26irgwc%3D1%26utm_medium%3Daffiliate%26utm_source%3DZiff%2520Davis%2520-%2520Black%2520Friday%26utm_campaign%3Dap_ir%26coupon_code%3D%26partner_hero_name%3D%26utm_content%3DB22723142.275269922%253Bdc_trk_aid%253D469817975%253Bdc_trk_cid%253D133608354_%26utm_term%3Dlower%26promo_code%3D
||casper.com^$removeparam=gwlurl
! http://www.cheapoair.com/?CAID=33301&FpAffiliate=LinkShare&FpSub=qpF0HYnRugA-CcQFHIQd44jY7IEGbZxehg
$removeparam=CAID
$removeparam=FpAffiliate
$removeparam=FpSub
! https://www.ifixit.com/Store/Tools/Toolkits?sponsor=ltt
||ifixit.com^$removeparam=sponsor
! https://ddos-guard.net/?affiliate=119953
||ddos-guard.net^$removeparam=affiliate
! https://www.greenmangaming.com/?tap_a=1964-996bbb&tap_s=2041734-c9a23b
||greenmangaming.com^$removeparam=/^tap_/
! https://secretlab.co/?rfsn=5973068.07e4d5
$removeparam=rfsn
! https://icedrive.net/?pt=lojxagugwf
||icedrive.net^$removeparam=pt
! https://www.adorama.com/?sterm=VWlWgE0K8xyIRwNxiAS6PRWLUkBTDLT34xL1Ws0
||adorama.com^$removeparam=sterm
! https://www.amc.com/?bcpid=988092858&bclid=1225543852&bctid=1214007594
$removeparam=bclid
$removeparam=bcpid
$removeparam=bctid
! https://www.chegg.com/textbooks/psychology-10th-edition-9781305498204-1305498208?trackid=680b4fc9118c&strackid=a2b7fd66a78c
$removeparam=trackid
$removeparam=strackid
! https://www.kohls.com/search.jsp?submit-search=web-regular&search=Ninja%20Foodi%20Deluxe%20XLr&kls_sbp=17499784183223295270059026280929794051&cid=affiliate-_-75107
! https://www.kohls.com/product/prd-5164006/ninja-creami-ice-cream-gelato-sorbet-maker.jsp?pfm=bdrecs-WebStore-Search-Horizontal1-b1174-257&bdrecsId=2bdf149f-933a-4139-a756-a9467ddd11ea?prdPV=32
||kohls.com^$removeparam=kls_sbp
||kohls.com^$removeparam=pfm
||kohls.com^$removeparam=bdrecsId
||kohls.com^$removeparam=prdPV
! http://www.3balls.com/?usource=lc&lctid=1184062&lcid=1630749503_3_0991310
! https://www.movavi.com/?afsrc=cj&usource=cj
$removeparam=afsrc
$removeparam=lctid
$removeparam=lcid
$removeparam=usource
http://www.bitdefender.com/?MPid=75107
$removeparam=/^mpid/i
! https://www.mcafee.com/consumer/en-us/landing-page/direct/aff/mtp-family/desktop/mcafee-total-protection.html?pkg_id=521&culture=en-us&csrc=cj&csrcl2=Black+Friday%2C+Ziff+Davis+LLC&ccoe=direct&ccoel2=am&ccstype=partnerlinks_412446610cc511ec82da00f00a180510&cctype=desktop&prgt=a
! https://www.vitacost.com/?csrc=SITEREF-CJ&cjbatcheventid=8807380&cjpid=8807380
$removeparam=csrc,domain=mcafee.com|vitacost.com
||mcafee.com^$removeparam=csrcl2
||mcafee.com^$removeparam=cctype
||mcafee.com^$removeparam=ccstype
$removeparam=cjbatcheventid
$removeparam=cjpid
! https://www.sephora.com/?om_mmc=aff-linkshare-redirect-qpF0HYnRugA&c3ch=Linkshare&c3nid=qpF0HYnRugA&ranLinkID=10-1
$removeparam=ranLinkID
$removeparam=c3ch
$removeparam=c3nid
$removeparam=om_mmc
! http://www.thenorthface.com/?ransiteID=qpF0HYnRugA-GVtDt3hThISaN_khzy00EQ
$removeparam=ransiteID
! https://www.bloomingdales.com/?m_sc=aff&ranPublisherID=qpF0HYnRugA&ranLinkTypeID=10
$removeparam=m_sc,domain=bloomingdales.com|macys.com
$removeparam=ranPublisherID
$removeparam=ranLinkTypeID
! https://store.wsj.com/shop/emea/wsjsseur21/?trackingCode=aaqwghtc
$removeparam=trackingCode
! https://turbotax.intuit.com/?ref_id=b00589ef0cf711ec80e900fe0a18050c_400504298571578137%3AIOlMYjilD_WV
||intuit.com^$removeparam=ref_id
! https://www.vrbo.com/?k_clickid=2f48df910d6511ec80e9012b0a18050c
$removeparam=k_clickid
! https://www.zchocolat.com/shop/en/138-heavenly-z-chocolate-bar?CJURL=http%3A%2F%2Fwww.zchocolat.com%2F#utm_source=CJ&utm_medium=zBarCollection
$removeparam=CJURL
! https://www.dollargeneral.com/?affiliateId=8439&affiliateCustomId=0285rTYk6SF3sJnT7xjfOZW
$removeparam=affiliateId
$removeparam=affiliateCustomId
! https://store.google.com/?CJPID=5411901&CJAID=14488329&CJSID=3438366388&CJCID=1522858
$removeparam=CJAID
$removeparam=CJCID
$removeparam=CJPID,domain=~keyade.com
$removeparam=CJSID
! https://www.tanga.com/?aff_network=cj&cj_cid=1397064&cj_publisher=Offers.com%20-%20Vertive%2C%20LLC&cj_link_id=11115853&cj_link_name=Tanga.com&cj_event=fa525e9a0cd011ec831185290a180511
||tanga.com^$removeparam=/^cj_/
$removeparam=aff_network
! https://www.cabelas.com/shop/en?irmpname=Ziff%20Davis%20-%20Offers.com
$removeparam=irmpname
! https://www.ticketmaster.com/?camefrom=CFC_BUYAT_10098&impradid=10098&REFERRAL_ID=tmfeedbuyat10098&impradname=Ziff%20Davis%20-%20Offers.com
$removeparam=REFERRAL_ID
$removeparam=impradid
$removeparam=impradname
! https://stackoverflow.com/?cm_type=gnav
$removeparam=cm_type
! https://www.chegg.com/study/?ADID=1081637
$removeparam=ADID
! https://www.monoprice.com/?ref=cj
! http://www.ticketnetwork.com/?ref=cj
! https://www.roku.com/products/roku-ultra?Ref=CJ
?ref=cj^$removeparam=/^ref/i
&ref=cj^$removeparam=/^ref/i
! https://newyorkcomedyclub.com/?ref=awin
?ref=awin^$removeparam=ref
&ref=awin^$removeparam=ref
! https://untilgone.com/products/usps-forever-stamps-2018-or-2019-u-s-flag-100-pack.html?source=pepperjam
?source=pepperjam^$removeparam=source
&source=pepperjam^$removeparam=source
! https://www.vitaminshoppe.com/?sourceType=af&source=cj
?source=cj^$removeparam=source
&source=cj^$removeparam=source
! https://www.jet2holidays.com/?source=AWIN
?source=awin^$removeparam=source
&source=awin^$removeparam=source
! https://us.myprotein.com/?affil=awin
?affil=awin^$removeparam=affil
&affil=awin^$removeparam=affil
||vitaminshoppe.com^$removeparam=sourceType
! https://us.boohoo.com/?$3p=a_cj_affiliate&~click_id=8c77e9c00c1e11ec82da00790a180510&~secondary_publisher=Offers.com%20-%20Vertive%2C%20LLC&$canonical_url=https%3A%2F%2Fus.boohoo.com%2F&~keyword=8807380&cj_linkd=12344165&cj_webid=8807380&cj_affid=1397064&cj_affname=Offers.com%20-%20Vertive%2C%20LLC&_branch_match_id=962049055156509358
! https://www.forever21.com/?$3p=a_cj_affiliate&~click_id=b8c806cf0cad11ec806d4d010a18050d&~secondary_publisher=Offers.com%20-%20Vertive%2C%20LLC&$canonical_url=http%3A%2F%2Fwww.forever21.com&cj_pub_sid=06gtKjdPmfBs463ojiL8awp&_branch_match_id=962306946010631351
$removeparam=/^\$/,domain=boohoo.com|forever21.com
$removeparam=/^\~/,domain=boohoo.com|forever21.com
$removeparam=_branch_match_id,domain=boohoo.com|forever21.com
! https://www.lightinthebox.com/c/robot-vacuums-cleaners_113104?p.litb_from=SAS&p.utm_source=sas&p.utm_medium=affiliate&p.utm_campaign=136482&url=http%3A%2F%2Fwww.lightinthebox.com%2Fc%2Frobot-vacuums-cleaners_113104
$removeparam=/^p\.utm_/
$removeparam=/^p\.litb_/
||lightinthebox.com^$removeparam=url
! https://norton.com/products?cjid=8807380&af_sub4=aff&af_sub5=CJ&c=CJ
||norton.com^$removeparam=/^af_/
||norton.com^$removeparam=c
$removeparam=cjid
! https://hoteles.com/?tmid=hcom-us.dps.cj.package-.package&PSRC=AFF10&rffrid=aff.hcom.us.002.003.8807380.cjaff.kwrd=886b4ff00cb611ec806d4d080a18050d&wapa6=00aLOkbcDwTPhG5y3pNOVi2&sub_publisher=1397064&sub_site=8807380&sub_ad=10780389
||hoteles.com^$removeparam=/^(PSRC|rffrid|wapa6|sub_|tmid)/
! https://www.childrensplace.com/us/c/gift-shop?cl_crtv=93981&cl_camp=3971&cl_pub=10098&LinkName=50-70%25%20Off%20All%20Gifts%20at%20The%20Children%27s%20Place!&Linksize&cl_str=mediapartner&cl_aid=tcp&cl_vend=tcp-impactradius&cl_ch=affiliate
$removeparam=cl_crtv
$removeparam=cl_camp
$removeparam=cl_pub
$removeparam=cl_str
$removeparam=cl_aid
$removeparam=cl_vend
$removeparam=cl_ch
! https://www.basspro.com/shop/en?irsharedid&hvarAID=impact
$removeparam=irsharedid
$removeparam=hvarAID
! https://buschgardens.com/?AFS=CJ
||buschgardens.com^$removeparam=AFS
! https://www.tedbaker.com/us?sv_campaign_id=82717&sv_tax1=affiliate&sv_tax3=uk.book-club-offers.com&sv_tax4=2227291&sv_affiliate_id=82717
$removeparam=sv_affiliate_id
$removeparam=sv_campaign_id
$removeparam=/^sv_tax/
! https://pub.emails.dollar.com/EmailAcquisition?SourceSystem=DOLLAR.COM&sourcecode=emailacq?&icid_source=enus&icid_campaign=D_A_USCA_IN_EmailAcquisition_Offer&icid_medium=Email_Acquisiton2_Hero&iata=00170201
$removeparam=/^icid_/
||dollar.com^$removeparam=SourceSystem
||dollar.com^$removeparam=sourcecode
||dollar.com^$removeparam=iata
! https://www.magazines.com/?LSNSUBSITE=Omitted_qpF0HYnRugA&afd_number=4046
$removeparam=LSNSUBSITE
$removeparam=afd_number
! https://www.worldmarket.com/?subacctname=Offers.com%20-%20Vertive%2C%20LLC&subacctid=07HAnhIuMjfzjxk6NGQHkGZ&sharedId=46ae0ff20d7111ec8037a6450a180514
$removeparam=subacctid
$removeparam=subacctname
$removeparam=sharedId
! https://www.travelocity.com/?affcid=travelocity-US.network.cj.8807380.10410828&afflid=02TQG4DUCgWzc1pM8DrkmVg
$removeparam=affcid
$removeparam=afflid
! https://www.thingsremembered.com/?fcref=afl%3AOffers.com%20(Offers.com%2C%20LLC)
$removeparam=fcref
! https://www.taskrabbit.com/?creative_id=13180506&site_id=3211374
||taskrabbit.com^$removeparam=creative_id
||taskrabbit.com^$removeparam=site_id
! https://control.kochava.com/v1/cpi/click?app_source=website&app_medium=button&app_campaign=app-ios&campaign_id=koios-client-app-c36sca13f37d993fe&network_id=9569&site_id=1&device_id=device_id
||kochava.com^$removeparam=/^app_/
||kochava.com^$removeparam=network_id
||kochava.com^$removeparam=site_id
||kochava.com^$removeparam=device_id
! https://sunbasket.com/try/90off-healthy-delivered/?offer=AFFMKSPRING90&mclk=VrJ0FZ0boxyIRwNxiAS6PRWLUkBTp4Vn4xL1Ws0&mrnd=5967574&maid=466145&mcid=8078&mpid=10098&msid&mpty=mediapartner&msb1&msb2&msb3&muts=1630695381206
$removeparam=mclk
$removeparam=mrnd
$removeparam=maid
$removeparam=mcid
$removeparam=msid
$removeparam=mpty
||sunbasket.com^$removeparam=/^msb/
||sunbasket.com^$removeparam=muts
! https://www.skyscanner.de/?previousCultureSource=GEO_LOCATION&redirectedFrom=www.skyscanner.com
||skyscanner.$removeparam=redirectedFrom
||skyscanner.$removeparam=previousCultureSource
! https://www.sixt.com/?exactag_uk=9d5a889680c4465784ce7afe174d6070
$removeparam=exactag_uk
! https://www.sierra.com/?stpcjid=8807380_4b06bf5ba22a410ba705cd17a6c618b3&codes-processed=true
$removeparam=stpcjid
! https://www.shopdisney.com/?LSID=8807380%7C11502922%7C07AfU4m6VVCOWkcvKjVHrwn&att=LSGenAffl&EFC=224510
$removeparam=LSID
||shopdisney.com^$removeparam=att
||shopdisney.com^$removeparam=EFC
! https://www.shopbop.com/?extid=affprg_linkshare_SB-qpF0HYnRugA&affuid=03YIJ120qrfneBzrgFZphAL&subid1=qpF0HYnRugA-DXFRwhmlttyMxF3QMcHugA&pf_rd_p=524fa342-a6a1-4ffe-bf4c-faa1b3b0fdc5&pf_rd_r=PPQP63RRXQVFCASEJGYW&ref_=SB_ALL_P2_CATx_whatsNew_4
||shopbop.com^$removeparam=/^pf_rd/
||shopbop.com^$removeparam=extid
$removeparam=affuid
! https://www.sephora.com/beauty/new-skin-care-products?icid2=homepage_slideshow_multi-world_slotting_justarrived_cyoa_01_skincare_us_desktop_hotspot_083121
$removeparam=icid2
! https://www.sears.com/?trco_id=5411901
||sears.com^$removeparam=trco_id
! https://www.saksfifthavenue.com/?site_refer=AFF001&LSoid=778432&LSlinkid=10&LScreativeid=1
$removeparam=site_refer,domain=saksfifthavenue.com|saksoff5th.com
||saksfifthavenue.com^$removeparam=LSoid
||saksfifthavenue.com^$removeparam=LSlinkid
||saksfifthavenue.com^$removeparam=LScreativeid
! https://www.priceline.com/?refclickid=10592070SID05JWBy6RC1tnbCtgGyCyQ1D
$removeparam=refclickid
! https://www.pacsun.com/?XCID=a%3Apid-equals-5411901_pub-name-equals-Black%20Friday%2C%20Ziff%20Davis%20LLC
$removeparam=XCID
! https://www.orientaltrading.com/?irclid=Uj1RPu0bTxyIRwNxiAS6PRWLUkBTpQyH4xL1Ws0
$removeparam=irclid