-
Notifications
You must be signed in to change notification settings - Fork 130
/
Copy pathchangelog.txt
3087 lines (2814 loc) · 79.1 KB
/
changelog.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
Changelog Bypass Paywalls Clean - Firefox
Updates (install signed xpi-file): https://gitflic.ru/project/magnolia1234/bpc_uploads (or check X/Nitter)
Post-release
Add Businesstimes.com.sg (SPH Media)
Fix Cambio Colombia (js)
Fix Dnevnik.bg (xhr)
Fix Follow the Money (css)
Fix LeMonde.fr (cartes)
Fix Newsday (js)
Fix The Spectator World (css)
Fix WSJ (pro & cn subdomain)
Update custom sites (ld_json_url: url_rest)
* v4.0.5.0 (2025-02-16)
Add Barron's
Add Tamedia.ch Group
Add Tg24.sky.it
Fix Harvard Business Review (data-visuals)
Fix MarketWatch (cookie)
Fix McClatchy Group (js)
* v4.0.4.0 (2025-02-09)
Add Actu.fr
Add Oxford University Press (opt-in to custom sites)
Add Philonomist
Add The-Independent.com
Remove Augsburger-allgemeine.de
Remove Barron's
Remove Golem.de
Remove Stern.de
Fix Australian Financial Review (magazine)
Fix Heise.de (fetch from archive.is)
Fix LaVoz.com.ar (js)
Fix PhiloMag.com (bot)
Fix Sciences Humaines (bot)
Fix Sz.de (projekte/sz-magazin fetch from archive.is)
Fix The Intercept (js-inline)
Remove OchToUnlock-fetch
* v4.0.3.0 (2025-02-02)
Add ABC Mais (BR)
Add Harzkurier.de (Funke)
Add Marianne.net (FR)
Add ShreveportBossierAdvocate (Nola)
Add The Baltimore Banner
Fix Connaissance des Arts (js)
Fix Forbes (scroll)
Fix Funke Mediengruppe (fetch)
Fix LeFigaro.fr (json)
Fix Liberation.fr (css)
Fix Scientific American (cookie)
Fix South China Morning Post (json)
Fix Sz.de (main domain; not projekte)
Fix The Quint (refresh)
* v4.0.2.0 (2025-01-26)
Add Bhaskar (IN)
Add History Today (app only)
Add StatNews
Add Telerama.fr
Remove LaTribune.fr
Remove Law.com
Fix Aachener-zeitung.de (css)
Fix LeFigaro.fr (json)
Fix LeParisien.fr (shortlink)
Fix Lequipe.fr (video & not Les notes)
Fix Liberation.fr (json)
Fix New Scientist (appan subdomain)
Update block general paywall script (RCP-View Limit)
Update block general paywall script (update Evolok WordPress)
* v4.0.1.0 (2025-01-19)
Add LeFigaro.fr
Add LeMonde.fr
Add Liberation.fr
Add New Scientist
Fix BusinessDesk.co.nz (mobile)
Fix Haaretz Group (user-agent)
* v4.0.0.0 (2025-01-12)
Add BusinessDesk.co.nz
Add Lequipe.fr
Add Repubblica.it (GEDI.it)
Add Saechsische.de (Madsack)
Fix Bar and Bench (json: attachment)
Fix El Espectador (amp-iframe/pdf)
Fix GauchaZH (refresh)
Fix LiveLaw.in (css)
Fix Maine Trust for Local News (js)
Fix New York Magazine sites (js)
Fix S&P Global (cookie)
Maintenance contentScript (prepare parameters)
* v3.9.9.0 (2025-01-05)
Add Bild.de
Add Brill
Add Citywire
Add Diplomatique.org.br
Add ElUniversal.com.mx
Add LaGaceta.com.ar
Remove Jazziz
Remove Limburger.nl
Fix Business Insider (js)
Fix Crusoe.com.br (ld_json_url)
Fix Handelsblatt (charts)
Fix Il Sole 24 Ore (anti-adblocker)
Fix The Atlantic (xhr)
* v3.9.8.0 (2024-12-29)
Add Bt.no
Add TheLeaflet.in
Add Welt.de
Add William Reed Group (opt-in to custom sites)
Fix Ad.nl (widgets)
Fix Fnlondon.com (referer)
Fix Welt.de (mobile css)
Fix WSJ (cn subdomain; disable refresh)
Update refresh (disable loop)
* v3.9.7.0 (2024-12-22)
Add Mopo.de
Add Tempo.co (ID)
Add The San Francisco Standard
Remove Liberation.fr
Fix BizJournals (css)
Fix Groupe Infopro Digital (js)
Fix Ksta.de & Rundschau-online.de (cookie)
Fix LaVoz.com.ar (js)
Fix LesEchos.fr (json)
Fix Postmedia Network (js)
Fix Spectator.co.uk (ld_json_url)
Fix Standardmedia.co.ke (css)
Fix The New York Sun (xhr)
Fix The Verge (js)
Fix Times of India (css)
* v3.9.6.0 (2024-12-08)
Add Autocar.co.uk
Add Diariodenavarra.es
Add Dn.pt
Add ilManifesto.it
Add Sciences Humaines (FR)
Add T3n.de
Remove Cmjornal.pt
Remove Groupe Rossel
Remove Next.ink
Remove Tamedia.ch Group
Remove Welt.de
Remove Wiwo.de
Fix PhiloMag.com (js)
Fix The Verge (xhr)
Update custom sites (ld_json: object-array)
Update layout Codebeautify.org (for GST)
* v3.9.5.0 (2024-12-01)
Add Initium Media
Remove La Segunda
Fix Grupo Prensa Iberica (timing & amp)
Fix Next.ink (ld_json_url)
Fix Telegraaf.nl (metered)
Fix The Economist (bot)
Fix YorkshirePost.co.uk (css)
* v3.9.4.0 (2024-11-24)
Add Manager-magazin.de
Add Nv.ua
Remove Lavoixdunord.fr, Lemessager.fr & Sudinfo.be (Groupe Rossel)
Fix Axios (login)
Fix Freitag.de (css)
Fix RugbyPass (images)
Fix Statista (outlook)
Fix The Chronicle of Higher Education (newsletter)
Fix The Diplomat (magazine)
Fix The Lawyer (ld_json_url)
Fix The (New Orleans) Advocate (js)
* v3.9.3.0 (2024-11-17)
Add Business Insider Japan
Add Decanter
Add Next.ink (FR)
Add Revue21.fr
Add The News Lens
Remove Seeking Alpha
Fix BusinessPost.ie (timing & charts)
Fix Ringier Axel Springer Polska (css)
Fix Spiegel.de (fetch from archive.is)
Fix Star Tribune (js)
Fix Tagesspiegel.de (fetch from archive.is)
Fix The Chronicle of Higher Education (css)
Fix Tiroler Tageszeitung (timing)
* v3.9.2.0 (2024-11-10)
Add Valnet Group (regwall; opt-in to custom sites)
Remove Bild.de
Remove Bnn.de
Remove Fd.nl
Remove Manager-magazin.de
Remove Mediahuis Nederland Regional
Remove Rhein-Zeitung.de
Fix Australian Financial Review (all live)
Fix Autonews, Pionline & Rubbernews (Crain)
Fix Dnevnik.bg (xhr)
Fix ESPN USA (fetch from archive.is)
Fix MediaNews Group (map & slideshow)
Fix Spiegel.de (fetch)
Fix The Japan Times (disable bot)
Update custom sites (amp_redirect: amp_url)
* v3.9.1.0 (2024-11-03)
Add Groupe Rossel
Add Merkur.de
Add Parkiet (GremiMedia.pl Group)
Add Tamedia.ch Group (opt-in to custom sites for unlisted)
Fix Australian Financial Review (markets live)
Fix Axios (css)
Fix Groupe Nice-Matin (js & amp)
Fix Nation Media Group (images)
Fix Stern.de (css)
Fix The Verge - newsletter (typo)
Fix Times Higher Education (css)
Update block general paywall script (Ippen.media)
Update block general paywall script (Chrome-sync)
* v3.9.0.0 (2024-10-27)
Remove Sudwest Media Network
Fix Ad.nl (no article)
Fix Business Insider (mobile)
Fix Interesting Engineering (css)
Fix McClatchy Group (identify sites)
Fix MIT Sloan Management Review (timing)
Fix Nation Media Group (videos)
Fix South China Morning Post (json & timing)
Fix Spiegel.de (charts)
Update custom sites (ld_json_url: unhide media)
Update external fetch (Chrome-sync)
* v3.8.9.0 (2024-10-20)
Add Linda.nl
Add NscTotal.com.br
Add Ole.com.ar (Grupo Clarin)
Fix Business Insider (bot)
Fix Faz.net (bot)
Fix InvestorsChronicle.co.uk
Fix Kompas.id (css)
Fix McClatchy Group (js & css)
Fix Nation Media Group (source)
Fix Tuttosport (ld_json_next)
Prepare manifest v3 (Chrome-sync)
* v3.8.8.0 (2024-10-13)
Add Handelsblatt
Add RheinPfalz.de
Add Wyborcza.pl Group
Remove Euractiv.com
Fix Mundo Deportivo (xhr)
Fix Nikkei Asian Review (ld_json_next)
Fix The Athletic (xhr)
Fix The New Statesman (js)
Update block general paywall script (update Evolok WordPress)
* v3.8.7.0 (2024-10-06)
Add Forbes.ua
Add Vox
Remove DerAktionaer.de
Fix CNN (css)
Fix National Review (ld_json_url)
* v3.8.6.1 (2024-09-30)
Add Benzinga
Add CNHI Group (opt-in to custom sites)
Add Rivals
Remove Autocar.co.uk
Remove Cieletespace.fr
Remove Citywire
Remove Humanite.fr
Remove Incisive Media
Remove LeMoniteur.fr
Remove Mz.de
Remove New Left Review
Remove New Scientist
Remove Schwaebische.de
Remove Sn.at
Fix Augsburger-allgemeine.de (fetch)
Fix MIT Sloan Management Review
Fix ProMedia.nl Group (bot only)
Fix The Columbian (bot)
Fix Vn.nl (timing & css)
Update custom sites (remove ld_google_webcache)
* v3.8.5.0 (2024-09-22)
Remove NTNews.com.au
Remove Svz.de (domain obsolete)
Fix Australia News Corp (disable bot)
Fix Dwell (amp)
Fix iNews.co.uk (liveapp)
Fix La Segunda (digital only)
Fix Seeking Alpha (xhr)
Fix Sz.de (images-projekte)
Fix WSJ (cn subdomain)
Update custom sites (ld_json_source & ld_json_url: json-key)
* v3.8.4.0 (2024-09-15)
Add Pb.pl
Add Stern.de
Remove Nouvelobs.com
Fix Australian Financial Review (js)
Fix Heise.de (images)
Fix Humanite.fr (css)
Fix Nw.de (json)
Fix Rugbyrama.fr (css)
Fix TheStage.co.uk (reviews)
Update Archive.is sites (renew-link)
Update block general paywall script (remove Weborama.fr)
Update OchToUnlock sites (links)
* v3.8.3.0 (2024-09-08)
Add DK Medier Group (opt-in to custom sites)
Add Dnevnik.bg
Add Manager-magazin.de (fetch from archive.is)
Add Sport.sky.it
Add Wyborcza.pl (fetch from archive.is)
Remove FreiePresse.de
Remove Medienholding Sud (Sudwest Media Network)
Fix LaNouvelleRepublique.fr (js)
Fix South China Morning Post (json)
* v3.8.2.1 (2024-09-01)
Add ElDeber.com.bo
Add Paste Magazine
Add Standardmedia.co.ke
Fix Crain Communications (js)
Fix Haaretz Group (mobile only archive-link)
Fix Tagesspiegel.de (fetch)
Fix Vn.nl (ld_json_next)
Prepare manifest v3 (Chrome-sync)
* v3.8.1.1 (2024-08-25)
Add Aachener-zeitung.de (fetch from archive.is)
Add Saarbruecker-zeitung.de & Volksfreund.de (RP Medien)
Remove ilManifesto.it
Fix BizJournals (anti-adblocker)
Fix Faz.net (json-story)
Fix Ga.de & Rp-online.de (RP Medien)
Fix Haaretz Group (fetch from archive.is)
Fix Los Angeles Times (js)
Fix San Diego Union-Tribune (MediaNews)
Fix Seeking Alpha (css)
* v3.8.0.0 (2024-08-18)
Add Las Vegas Review-Journal
Add Politico (regwall; not pro)
Add The Dispatch
Fix Atlantico.fr (xhr)
Fix Cmjornal.pt & Record.pt (amp-redirect)
Fix Ksta.de & Rundschau-online.de (css)
Fix Telegraaf.nl (css)
Fix The Intercept (js)
Update block general paywall script (update Piano.io)
* v3.7.9.0 (2024-08-11)
Add Le Revenu (FR)
Add Le1Hebdo.fr
Fix Advance Local (json)
Fix El Pais (js-inline on subdomain)
Fix EUobserver (json)
Fix FreiePresse.de (css)
Fix Sz.de
Fix WSJ (jp subdomain; not cn)
Remove GitHub-links (use GitFlic)
* v3.7.8.0 (2024-08-04)
Remove Jane's Defence Weekly
Fix Faz.net (related)
Fix Fd.nl (specials)
Fix Haaretz Group (error/videos)
Fix La Tercera (css)
Fix The Athletic (regwall)
Fix The Economist (no podcasts+)
Fix The Irish News (host permission)
Update block general paywall script (Arc XP)
Remove GitFlic-links (use GitHub)
* v3.7.7.0 (2024-07-28)
Add Reforme.net (FR)
Add The Irish News
Remove Die Presse
Fix Foreign Policy (xhr only)
Fix Groupe La Depeche (css)
Fix Revista Oeste (css)
Fix Tech in Asia (bot)
Fix The Economist (podcasts+)
Fix The Lawyer (host permission)
Fix The Times UK (mobile scroll)
Fix Vogue Business (json)
* v3.7.6.0 (2024-07-21)
Add Agefi.fr
Add AutoHebdo.fr
Add Daily Mail Group (UK)
Add The Lawyer (UK)
Remove DealStreetAsia
Fix Times Higher Education (js-inline)
Fix WaPo (mobile comments)
* v3.7.5.0 (2024-07-14)
Add Capital.bg
Add CyclingNews
Add Nation Media Group (Kenya; opt-in to custom sites for unlisted)
Remove The New York Post
Remove TheLawyersDaily.ca (domain obsolete)
Fix Augsburger-allgemeine.de (Google webcache)
Fix Independent.co.uk (premium - js only)
Fix Onet.pl (json)
* v3.7.4.0 (2024-07-08)
Add Bnn.de (fetch from archive.is)
Add Epochtimes.com.br (opt-in to custom sites)
Add Hydrogen Insight (DN Media Group)
Add Ikz-online.de (Funke)
Add Southern Weekly
Add The American Scholar
Add Wiwo.de (fetch from archive.is)
Remove Noz.de & Shz.de
Remove Saltwire Network
Remove Volksstimme.de
Fix Inc42 (xhr)
Fix Ksta.de & Rundschau-online.de (css)
* v3.7.3.0 (2024-06-30)
Add Euractiv.com
Add Puck.news (fetch from archive.is)
Remove HinduTamil.in
Fix Mediahuis Belgie (mobile)
Fix Nikkei Asian Review (Google webcache)
Fix Project Syndicate (no article)
Fix Seeking Alpha (mobile)
Fix Sz.de (fetch from archive.is)
Fix Vogue Business (no article)
Update custom sites (ld_json_next: content array)
* v3.7.2.0 (2024-06-23)
Add DN.no (DN Media Group)
Add Publico.es
Fix Australian Financial Review (css)
Fix Bar and Bench (css)
Fix DerAktionaer.de
Fix Fd.nl (fetch from archive.is)
Fix Malayala Manorama
Fix Mediahuis Nederland Regional (css)
Fix Nikkei Asian Review (if piano.io-block)
Fix Telegraaf.nl (xhr)
Fix The News Minute (css)
Fix The Times UK (new domain)
Update NHST to DN Media Group
* v3.7.1.0 (2024-06-02)
Add Ga.de & Rp-online.de
Add Golem.de
Add Heise.de
Add Limburger.nl (fetch from archive.is)
Add Malayala Manorama
Add Mediahuis Belgie (fetch from archive.is)
Add ScienceNews.org
Remove Di.se
Remove LeMonde.fr
Remove Telerama.fr
Fix Courrier international (fetch from archive.is)
Fix NHST Media Group (json)
Fix Sz.de (main domain)
Fix The Economist (no podcasts+)
* v3.7.0.0 (2024-05-26)
Add DagensMedicin.se
Add Scholastic
Remove Private Equity News
Fix Medium (add link to Read Medium)
Fix The Economist (fetch from archive.is)
Fix Times of India (json)
Update custom sites (remove legacy)
* v3.6.9.0 (2024-05-19)
Add Mediahuis Nederland Regional (fetch from archive.is)
Add Politis.fr
Remove Limburger.nl
Remove Mediahuis Belgie
Remove StuDocu
Fix Ajc.com (css)
Fix Clarin (js)
Fix Fnlondon.com (fetch from archive.is)
Fix The Athletic (NYTimes domain)
Fix The Economist (no Google webcache)
Fix The Juggernaut (json)
Fix The Quint (timing)
* v3.6.8.0 (2024-05-12) - manual update
Add Motor Sport Magazine (UK)
Remove Southern Weekly
Remove Wiwo.de
Fix Fast Company (json)
Fix Financial Times (fetch from archive.is)
Fix Limburger.nl
Fix Mediahuis Belgie
Fix Mid-Day (amp-redirect)
Fix Spiegel.de
Fix The Japan Times (bot)
Fix Tribune Publishing (json)
Remove BitBucket-links
Update popup/custom sites (remove 1ft.io)
* v3.6.7.0 (2024-05-05)
Add DVV Media International (opt-in to custom sites)
Add Kompas.id
Add The New Criterion
Fix Australian Financial Review (json)
Fix eNotes (css)
Fix LiveMint (js)
Fix MarketWatch (amp-redirect)
Fix Seeking Alpha (inert links)
Fix Tagesspiegel.de
Fix The Economic Times (mobile)
Fix The Economist (podcasts)
Fix WaPo (bot)
Fix WSJ (referer; use USA IP/VPN)
* v3.6.6.0 (2024-04-28)
Add DealStreetAsia (ld_json_next)
Add Groupe Profession Sante
Add Liberation.fr (json)
Remove Marianne.net
Fix Advance Local (json)
Fix Ajc.com (videos)
Fix Citywire
Fix El Cronista (js)
Fix Honolulu Star-Advertiser (css)
Fix McClatchy Group (js)
Fix Seeking Alpha (var-bug)
Fix Sz.de
Fix TheTimes.co.uk (free & intro video)
Fix Tijd.be (css)
* v3.6.5.0 (2024-04-21)
Add DigiTimes Asia
Add NDTV Profit (former BQ Prime)
Add Pirate Wires
Remove ilSecoloXIX.it
Remove Repubblica.it
Fix El Espanol (css)
Fix Faz.net (ld_json_nuxt)
Fix Seeking Alpha (source)
Fix WSJ (inline video)
Add GitHub-links
* v3.6.4.0 (2024-04-14)
Add OVB Media (opt-in to custom sites for unlisted)
Add Private Media AU
Fix BizJournals (css)
Fix Business Insider (js)
Fix Business-standard.com
Fix The Economist (regwall)
Fix WaPo (js)
Remove GitLab-links
Update custom sites (block_regex_ignore_default)
* v3.6.3.0 (2024-04-07)
Add Bild.de (fetch from archive.is)
Add Capital.fr
Add Crain's Grand Rapids Business
Add Hln.be (fetch from archive.is)
Add Nordwest Zeitung
Add Spektrum.de
Fix Exame
Fix LeMonde.fr (view more)
Fix LesEchos.fr (regwall)
Fix MediaNews Group (ld_json_url)
Fix Nzz.ch (css)
Fix Reuters (videos)
Fix Seeking Alpha (xhr)
Fix Tiroler Tageszeitung (json)
* v3.6.2.0 (2024-04-01)
Add American Purpose
Add Ringier Axel Springer Polska
Remove Hbvl.be
Remove The Banker
Fix Humanite.fr
Fix LeMonde.fr (bug)
Fix Newsweek.pl (premium video)
Fix Wiwo.de (anti-adblocker)
Fix WSJ (intro video)
Update custom sites (search)
* v3.6.1.0 (2024-03-24)
Add Blick.ch (Ringier Gruppe)
Add CNN (regwall)
Add CodeSports.com.au (AU News Corp)
Add LeMonde.fr (fetch from archive.is)
Add Newslaundry
Remove Bild.de
Remove Hln.be
Fix Bar and Bench (json)
Fix Clarin (js)
Fix Expresso.pt (json)
Fix Haaretz Group (anti-adblocker)
Fix Newsweek.pl (css)
Fix The Athletic (scroll)
Fix The News Minute (json)
Fix The Quint (json)
Fix WSJ (disable bot/referer)
* v3.6.0.0 (2024-03-17)
Add Courrier international
Add GB News
Add LeMoniteur.fr (Groupe Infopro Digital)
Add Observador.pt
Add Pour l'Eco
Fix Autosport (js)
Fix Fast Company (premium)
Fix Mid-Day (amp-redirect)
Fix ProMedia.nl Group (premium-backup)
Fix Tech in Asia (json)
Fix Telegraaf.nl (no article/image)
Update options (search)
* v3.5.9.0 (2024-03-10)
Add Funke Mediengruppe (fetch from archive.is)
Add Industry Dive (opt-in to custom sites)
Add Suedkurier.de (fetch from archive.is)
Add The Salt Lake Tribune
Remove Puck.news
Fix Boersen-zeitung.de (timing)
Fix ElMundo.es (colegios - no amp-fix)
Fix Hearst newspapers (anti-adblocker)
Fix Il Sole 24 Ore (24+ only)
Fix Motor Presse Stuttgart (xhr)
Fix The Globe and Mail (js only)
Fix The Quint (css)
* v3.5.8.0 (2024-03-03)
Add Autosport (free articles only)
Add Digiday Media
Add Il Sole 24 Ore
Add Newsquest Media Group (UK; opt-in to custom sites)
Remove BusinessTimes.com.sg
Remove Dn.se
Remove LeFigaro.fr
Fix Australia News Corp (Googlebot mobile)
Fix Haaretz Group (Outbrain bot)
Fix Medscape (js)
Fix Project Syndicate (no article)
Fix Telegraaf.nl (timing)
Fix Times of India (epaper)
Fix Upstream - NHST (json)
Maintenance updated sites (removed)
Update custom sites (block_host_perm_add)
* v3.5.7.0 (2024-02-25)
Add Canarias7.es (Grupo Vocento)
Add Forbes.com.au
Add Polityka.pl
Add The Stage Media (UK)
Add Vogue.co.uk (Conde Nast)
Remove Arkansas Democrat-Gazette
Remove EWmagazine.nl
Remove Funke Mediengruppe
Remove Groupe Rossel
Remove Mediahuis Nederland Regional
Fix Epoch.org.il (css)
Fix Haaretz Group (disable bot)
Fix Humanite.fr (json)
Fix The Quint (json)
Fix Times of India (amp-redirect)
* v3.5.6.0 (2024-02-18)
Add 3 more Gannett sites
Add CH Media (opt-in to custom sites for unlisted)
Add Sourcing Journal (Penske)
Fix Advance Local (json)
Fix CartaCapital.com.br (freemium)
Fix Groupe ESH Medias (iframely)
Fix Grupo Vocento (limit amp-redirect)
Fix Kurier.at (js & css)
Fix Los Angeles Times (images)
Fix Nw.de (amp-redirect)
Fix TheTimes.co.uk (mobile images)
* v3.5.5.0 (2024-02-11)
Add DailyMail.co.uk
Add DerAktionaer.de (fetch from archive.is)
Add Dwell (json)
Add Superdeporte.es (Grupo Prensa Iberica)
Add Ynet.co.il
Fix El Espanol (Cronica Global)
Fix Grupo Prensa Iberica (css)
Fix MIT Sloan Management Review (old articles)
Fix National Geographic USA (js-regwall)
Fix Swarajyamag
Fix Telegraaf.nl (premium only)
Fix The Indian Express (js)
Fix Vogue Business (fetch from archive.is)
Update block general paywall script (Sophi.io)
Update block general paywall script (update FewCents)
* v3.5.4.0 (2024-02-04)
Add BusinessTimes.com.sg & StraitsTimes.com (SPH Media)
Add Dagsavisen.no
Add Dn.se (fetch from archive.is)
Add Expresso.pt (json)
Add McPherson Media Group (au; opt-in to custom sites)
Add The Lamp Magazine
Fix Augsburger-allgemeine.de (Googlebot)
Fix Tribune Publishing Company (js)
Update custom sites (ld_archive_is)
* v3.5.3.0 (2024-01-28)
Add El Nuevo Herald (McClatchy Group)
Add Newsweek.pl (fetch from archive.is)
Add Study.com (only lessons; no videos)
Remove Abendblatt.de (Funke)
Fix Groupe Capitales Medias (identify sites)
Fix Grupo Abril (js)
Fix Haaretz Group (anti-adblocker)
Fix LesEchos.fr
Fix TopAgrar (js-inline)
Fix WSJ Pro (fetch from archive.is)
* v3.5.2.0 (2024-01-21)
Add Hln.be (fetch from archive.is)
Add Limburger.nl (fetch from archive.is)
Add Mediahuis Belgie (fetch from archive.is)
Add Mediahuis Nederland Regional (fetch from archive.is)
Add Stratfor
Add Wiwo.de (fetch from archive.is)
Remove Franc-Tireur.fr
Fix Barron's (disable bot)
Fix Grupo Abril (images)
Fix Hearst magazines (js)
Fix Independent.co.uk (premium images)
Fix The (New Orleans) Advocate (gambit)
Fix Times Higher Education (books)
Fix Zeit.de (bug)
Maintenance check update signed (self-hosted)
* v3.5.1.0 (2024-01-14)
Add Boston Herald (MediaNews Group)
Add EWmagazine.nl (fetch from archive.is)
Add Schwarzwaelder-bote.de
Add The Irish Examiner
Remove LeMonde.fr
Remove Otz.de, Thueringer-allgemeine.de & Tlz.de (Funke)
Remove Wz.de
Fix Groupe Rossel (fetch from archive.is)
Fix LeParisien.fr
Fix MediaNews Group (identify sites)
* v3.5.0.0 (2024-01-07)
Add Forum Communications (opt-in to custom sites)
Add Motor Presse Stuttgart
Add JournaldeMillau.fr (Groupe La Depeche)
Remove Bhaskar
Remove Westfalische Mediengruppe
Fix Ad.nl (reduced only)
Fix Haaretz Group (Semrushbot)
Fix Mediahuis Noord (js & xhr only)
Fix The Atlantic (menu & footer)
Fix The Diplomat (magazine)
Fix The Indian Express (css)
Fix Times of India (epaper)
Update custom sites (custom user-agent/referer)
* v3.4.9.0 (2023-12-31)
Add Business Insider Nederland
Add Business Insider Polska
Add Huffingtonpost.it
Fix elDiario.es (amp-redirect)
Fix Haaretz Group (fetch from archive.is)
Fix Inc42 (css)
Fix Independent.co.uk (fetch from archive.is)
Fix PEI Media (identify sites)
Fix S&P Global (js-inline)
Fix Sz.de (fetch from archive.is)
Fix The Juggernaut
Update block general paywall script (Leaky-js-cookie)
* v3.4.8.0 (2023-12-24)
Add Bild.de (fetch from archive.is)
Add BNP Media (opt-in to custom sites)
Add BusinessAM.be
Add Fox News (regwall)
Add Rp.pl
Remove Bnn.de
Remove LeTemps.ch
Remove Money.it
Fix Automobilwoche.de (js)
Fix Foreign Policy (Insider)
Fix Groupe Centre France (identify sites)
Fix Harvard Business Review (script)
Fix LeParisien.fr (amp-redirect)
Fix London Review of Books (js-inline)
Fix Media Group Westfalen
Fix National Review (cookies)
Fix Nw.de (amp-redirect)
Fix NYmag-sites (js)
Fix The West Australian (cs-loading)
Grouping Haaretz sites
Enable optional host permissions on Android (Firefox 120+)
Update block general paywall script (EverCookie)
Update ld_json_url (default url)
* v3.4.7.0 (2023-12-14)
Add Die Presse (AT)
Add LiteraryReview.co.uk
Add Weser-Kurier.de
Remove JungeFreiheit.de
Remove Groupe EBRA
Remove Nordwest Zeitung
Remove Wissenschaft.de
Fix Australia News Corp (media on amp)
Fix Faz.net (disable Zeitung subdomain)
Update sites: fix Google webcache
* v3.4.6.0 (2023-12-10)
Remove Morgenpost.de (Funke)
Remove The Star Malaysia
Fix Beobachter.ch (json)
Fix Bloomberg (css)
Fix Crikey.com.au (cookie)
Fix Nikkei Asian Review (cookie)
Fix The Atlantic (videos)
Fix TheTimes.co.uk (fetch from archive.is)
Update sites: fetch from archive.is
* v3.4.5.0 (2023-12-03)
Add 3 more Hearst newspapers
Add Correiodopovo.com.br
Add Gazetadopovo.com.br
Add Ikz-online.de (Funke)
Remove Braunschweiger-zeitung.de (Funke)
Fix Arkansas Democrat-Gazette
Fix Defector
Fix Freitag.de (text-break)
Fix La Segunda
Fix LeParisien.fr (amp-redirect)
Fix NzHerald (xhr)
Fix The West Australian (timing)
* v3.4.4.0 (2023-11-26)
Add Freitag.de
Add ilSecoloXIX.it (GEDI.it)
Add Jazziz
Add Jazzwise
Add Repubblica.it (GEDI.it)
Add Tagesspiegel.de (link to archive.is)
Add Tiroler Tageszeitung
Remove Madavor Media (domains obsolete)
Fix El Periodico de Catalunya (Grupo Prensa Iberica)
Fix Groupe Nice-Matin (css)
Fix The Hill Times (ld_json_url)
Fix The Japan Times (premium; link to 1ft.io)
Fix TheTimes.co.uk (mobile scroll)
Update popup (fix toggle for custom flex sites)
* v3.4.3.0 (2023-11-19)
Add Doorbraak.be
Add InvestSmart.com.au
Add Moda.it (GEDI.it)
Add Global Polymer Group (Crain)
Add Profil.at
Add Welt.de (link to archive.is)
Remove EurekaReport.com.au (domain obsolete)
Fix FreiePresse.de
Fix South China Morning Post (css)
Fix Tech in Asia (css)
* v3.4.2.0 (2023-11-12)
Add Haymarket Media Group (opt-in to custom sites)
Add Haymarket Medical Network (opt-in to custom sites)
Remove Observador.pt
Remove Schwarzwaelder-bote.de
Fix Belfast Telegraph & Independent.ie
Fix Bloomberg (overlay)
Fix Business-standard.com (ld_json_next)
Fix GauchaZH (refresh)
Fix Groupe Rossel (link to archive.is)
Fix Italian.tech (GEDI.it)
Fix Telegraaf.nl (images)
Fix The Diplomat
Fix The Globe and Mail (css)
Update block general paywall script (fix TownNews)
Update custom sites (delete default sites)
Update Leaky Paywall (identify more sites)
Update popup (toggle for custom flex sites)
* v3.4.1.0 (2023-11-05)
Add Jane's Defence Weekly
Add L'Opinion.fr
Add LeFigaro.fr (link to archive.is)
Add LeMonde.fr (link to archive.is)
Add SchweizerMonat.ch
Add Sz.de (link to archive.is)
Add The Epoch Times & Epoch.org.il (+ cz|de|fr|jp|ro; opt-in to custom sites)
Add The Impression
Remove Delinian Group
Fix El Pais (mobile)
Fix Schwaebische.de
Fix TheBulletin.org (ld_json_url)
Fix WSJ (mobile & Googlebot for cn/jp subdomain)
Update custom sites (group & link to 1ft.io)
* v3.4.0.0 (2023-10-29)
Add CartaCapital.com.br
Add Cosmopolitan.fr
Remove CodeSports.com.au
Remove Hln.be
Remove VosgesMatin.fr (EBRA)
Fix Albuquerque Journal (css)
Fix Apollo Magazine
Fix Barron's (amp-redirect)
Fix Faz.net (json)
Fix Fnlondon.com
Fix GauchaZH (timing refresh)
Fix Harvard Business Review (cookie)
Fix McClatchy Group (js)
Fix Spectator.com.au
Fix The Hindu (+ BusinessLine) epaper
Fix WSJ (hard refresh or non-pro; link to archive.is)
Update block general paywall script (Amplitude)
* v3.3.9.0 (2023-10-22)
Add Balkan Insight
Add Groupe Quebecor
Add Inside Retail (opt-in to custom sites)
Add Maine Trust for Local News (opt-in to custom sites)
Add The Baffler
Fix Australia News Corp (amp-fix for desktop)
Fix Faz.net (json)
Fix GauchaZH (refresh)
Fix Medium (add link to freedium)
Fix WSJ (link to Google Search Tool)
* v3.3.8.0 (2023-10-15)
Add LePoint.fr
Add Mz.de & Volksstimme.de
Add Texas Monthly
Remove Mediahuis Nederland Regional
Fix Belfast Telegraph & Independent.ie (images)
Fix BusinessPost.ie (js)
Fix Estadao.com.br (js)
Fix Harvard Business Review (subscriber-only)
Fix NyTeknik.se
Fix Tuttosport (image)
Fix Unherd (css)
* v3.3.7.0 (2023-10-08)
Add Bhaskar (IN)
Add Granta Magazine (UK)
Add Interesting Engineering
Add JungeFreiheit.de
Add Vn.at
Fix Media Group Westfalen
Fix Mediahuis Nederland Regional (js)
Fix NHST Media Group (js)
Fix The Atlantic (images)
Update custom sites (ld_json: multi-entry array)
* v3.3.6.0 (2023-10-01)
Add Conde Nast Traveler
Add Sn.at
Add The Columbian
Fix Groupe La Depeche (json)
Fix Mediahuis Noord (json)
Fix Mexico News Daily
Fix New Scientist (text-break)
Fix NHST Media Group
Fix The Hill Times (css)
Update amp-redirect (disable loop)
Update custom sites (import: remove obsolete)
* v3.3.5.0 (2023-09-24)
Add Arkansas Democrat-Gazette
Add Incisive Media (opt-in to custom sites)
Add Vol.at
Remove HBR China
Remove VentureBeat (no paywall)
Fix MediaNews Group (identify sites)
Fix The Week (css)
Update block general paywall script (fix BlueConic)
Update custom sites (import: ignore obsolete)
* v3.3.4.0 (2023-09-17)
Add Cambio Colombia
Add The News Minute (IN)
Add Vikatan (IN)
Fix LaStampa.it (video articles)
Fix Roularta Media Group (modal)
Fix South China Morning Post (mobile & amp)
Fix WSJ (disable amp-redirect for www)
* v3.3.3.0 (2023-09-10)