-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathchangelog.txt
1843 lines (1662 loc) · 48.9 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://gitlab.com/magnolia1234/bypass-paywalls-firefox-clean/-/releases
Post-release
Fix ESPN USA
Fix Groupe IPM
Fix StuDocu (banner)
* v3.1.4.1 (2023-04-17)
Add El Observador, El Pais & La Diaria (Uruguay)
Add Jacobin.de
Add ProMedia.nl Group (opt-in to custom sites)
Add Substack (link to Google Search Tool; opt-in to custom sites for custom domains)
Fix Berlingske.dk
Fix NYTimes (Googlebot)
Fix Tagesspiegel.de (background; link to Google Search Tool)
Update block general paywall script (Ippen.space)
Update popup (12ft.io)
* v3.1.3.0 (2023-04-10)
Add Haas Mediengruppe (opt-in to custom sites)
Remove Griffith Review (fix obsolete)
Fix Gannett Group (identify sites)
Fix LesEchos.fr (json)
Fix Nautil.us (cookies)
Fix The West Australian (json)
* v3.1.2.0 (2023-04-02)
Add Epicurious (Conde Nast)
Add LeGrandContinent.eu
Add Schwaebische.de
Add TagesAnzeiger.ch (link to archive.is)
Remove Business Standard (fix obsolete)
Fix BusinessPost.ie (json)
Fix Citywire
Fix DHnet.be, L'Avenir & LaLibre.be (Add Groupe IPM)
Fix The Spectator World (new domain)
Fix TownNews sites (js)
Fix ZeroHedge (timing)
* v3.1.1.0 (2023-03-26)
Add Flair.nl, Libelle.nl & Margriet.nl
Add Le Figaro (link to archive.is)
Add Revue Conflits
Add Sport Life Iberica (opt-in to custom sites)
Remove Cellesche Zeitung (fix obsolete)
Fix Automobilwoche.de (js)
Fix Faz.net (json)
Fix PEI Media (identify site)
Fix The Art Newspaper (js)
Fix The New Republic (modal)
Fix The West Australian
Fix Valor Economico (amp-redirect)
* v3.1.0.0 (2023-03-19)
Add Defector
Add Euromoney
Add The Juggernaut
Remove Iltalehti.fi (fix obsolete)
Fix ilManifesto.it (timing)
Fix iPolitics.ca (refresh)
Fix Sciences et Avenir.fr (css)
Fix Times Literary Supplement (cookies)
* v3.0.9.0 (2023-03-12)
Add Medienhaus Aachen
Remove Rheinische Post Mediengruppe (fix obsolete)
Remove RheinPfalz.de (fix obsolete)
Fix Haaretz English
Fix Inkl
Fix NK News (not pro)
Fix The West Australian
* v3.0.8.0 (2023-03-05)
Add Bloomberg Adria
Add DN.no (cached articles only)
Remove CaravanMagazine.in (fix obsolete)
Remove TagesAnzeiger.ch (fix obsolete)
Remove Welt.de (fix obsolete)
Fix Berliner Zeitung
Fix Mediahuis Noord
Fix mobile user-agent for Google webcache
Fix New Scientist
Fix SudInfo.be (text)
* v3.0.7.0 (2023-02-26)
Add Landwirtschaftsverlag
Add LosAndes.com.ar (Grupo Clarin)
Remove Hln.be (fix obsolete)
Remove Lequipe.fr (fix obsolete)
Fix Harper's Magazine (modal)
Fix Madsack Mediengruppe (custom flex sites)
Fix Newsday (overlay)
Fix NK News (pro)
Fix Quartz (newsletter)
Fix Quotidiano.net sites
Fix Sacramento Bee (amp)
Fix The Atlanta Journal-Constitution (js)
* v3.0.6.0 (2023-02-19)
Add DHnet.be
Add National World Publishing (UK)
Add Roularta Media Group (be)
Add Spiegel.de (link to archive.is)
Add TagesAnzeiger.ch (link to archive.is)
Remove Asia Times (fix obsolete)
Remove Finance.si (fix obsolete)
Remove NordEclair.fr (domain obsolete)
Fix Australia News Corp (no amp-fix)
Fix El Tiempo (css)
Fix Grupo Abril (js)
Fix Lc.nl
Fix Outside (js)
Update block general paywall script (FewCents)
Update custom sites (add_ext_link)
* v3.0.5.0 (2023-02-12)
Add L'Informe (fr)
Add LePoint.fr
Fix Koelner Stadt-Anzeiger
Fix Leaky Paywall (identify site)
Fix LesEchos.fr (json)
Fix McClatchy Group (amp-redirect)
Fix The West Australian (regional; identify site)
Remove amo-support
Update block general paywall script (limit Piano.io/TinyPass)
* v3.0.4.0 (2023-02-05)
Add Inside Higher Ed
Add Kurier.at
Add Quillette (link to archive.is)
Add Verlagsgruppe Rhein Main
Remove DN.no (fix obsolete)
Remove L'Opinion.fr (fix obsolete)
Remove Spiegel.de (fix obsolete)
Fix Conde Nast magazines (js/cookies)
Fix DvhN.nl (json)
Fix Los Angeles Times & San Diego Union-Tribune
Fix Madsack Mediengruppe
Fix The Atlantic (images)
Fix The Australian (The Oz)
Fix The Globe and Mail (media)
Fix The Hill Times (text)
* v3.0.3.0 (2023-01-29)
Add Saarbruecker Zeitung
Remove Handelsblatt (fix obsolete)
Remove Nordwest Zeitung (fix obsolete)
Remove Wiwo.de (fix obsolete)
Fix Belfast Telegraph
Fix Groupe LaDepeche.fr (text)
Fix LesEchos.fr (json)
Fix NzHerald (css)
Fix SOFREP (plus)
Fix StuDocu (timing)
Fix Volksfreund.de
Update block general paywall script (Steady)
* v3.0.2.0 (2023-01-22)
Add AerzteBlatt.de
Add AerzteZeitung.de
Add 3 Australia News Corp sites
Add BusinessPost.ie
Add Cellesche Zeitung
Add DvhN.nl
Fix ET Prime (mobile epaper)
Fix Fd.nl (search)
Fix Statista (outlook)
Fix StuDocu
Fix The Australian (amp)
Fix TheTimes.co.uk (overlay)
Update popup (fix clear cookies; custom version)
* v3.0.1.0 (2023-01-15)
Remove Repubblica.it (fix obsolete)
Remove Republic.ru (fix obsolete)
Fix Inc42
Fix LesEchos.fr (investir)
Fix Madsack Mediengruppe (identify site in cs)
Fix National Review (no amp)
Fix The Athletic (error)
Fix Vogue Business
Update custom sites (default block cookies)
Update popup (Google Search Tool)
* v3.0.0.0 (2023-01-08)
Add Deutscher Fachverlag Mediengruppe (opt-in to custom sites)
Add LeCourrierDesStrateges.fr
Add McClatchy DC
Add Mundo Deportivo
Add PhiloMag.de
Add The Quint
Add ZeroHedge
Remove Entrepreneur (fix obsolete)
Remove Saarbruecker Zeitung (fix obsolete)
Remove (custom) Substack (fix obsolete)
Remove The-Village.ru (fix obsolete)
Fix Aftonbladet.se (link to archive.is)
Fix Boston Globe (css)
Fix BQ Prime (geo-block)
Fix Nordwest Zeitung
Fix Substack (split content - fix obsolete)
Fix Telegraaf.nl
Fix The Seattle Times (comments)
Fix TheSaturdayPaper.com.au
* v2.9.9.0 (2022-12-27)
Add Bulletin of the Atomic Scientists
Add Limburger.nl (link to archive.is)
Add Republic.ru
Add The-Village.ru
Add Wiwo.de
Add Wonderzine (ru)
Remove DvhN.nl & Mediahuis Belgie (fix obsolete)
Fix New York Magazine sites (timing cookies)
Update block general paywall script (Axate.io)
Update custom sites (block_js_inline)
Update custom sites (cs_code: remove/unhide in dom)
Update custom sites (fix optional permissions)
* v2.9.8.0 (2022-12-18)
Add CaravanMagazine.in
Fix L'Express.fr
Fix MIT Sloan Management Review
Fix Noz.de (no amp)
Grouping NOZ/MHN Mediengruppe
Update block general paywall script (TownNews & fix Pigeon)
Update custom flex sites (identify main domain)
Update custom/updated sites (onMessage in contentScript)
* v2.9.7.0 (2022-12-11)
Add Handelsblatt
Remove 6 Australia News Corp sites (fix obsolete)
Remove Law360 (fix obsolete)
Fix Business Standard (images)
Fix Codesports.com.au (js)
Fix DN.no (images)
Fix Noz.de (no amp)
Fix Substack (redundant text)
Fix The Athletic (regwall)
Update custom flex sites (identify on dom)
Update custom sites (set useragent Facebookbot)
* v2.9.6.0 (2022-12-04)
Add DN.no
Add Sueddeutsche Zeitung (link to archive.is)
Add Welt.de (link to archive.is)
Remove BusinessPost.ie (fix obsolete)
Remove Philonomist (fix obsolete)
Fix Australian Community Media (identify on url)
Fix Groupe Centre France (text)
Fix Quotidiano.net (no amp)
Fix The Atlantic (js)
Fix The Chronicle of Higher Education (css)
* v2.9.5.0 (2022-11-27)
Add Haaretz.co.il & The Marker
Remove LaVie.fr (fix obsolete)
Remove Mediapart.fr (fix obsolete)
Fix & grouping Australia Nine Entertainment
Fix La Vanguardia (images)
Fix NzHerald (timing)
Fix Nzz.ch regional (css)
* v2.9.4.0 (2022-11-20)
Add CNBC (Pro text)
Add Etc.se
Add Project Syndicate (link to archive.is)
Remove Haaretz.co.il & The Marker (fix obsolete)
Fix Madsack Mediengruppe
Fix Quora (plus-link)
Fix The Hill Times (text)
Fix custom sites (block_regex)
* v2.9.3.0 (2022-11-13)
Add Ad.nl (+ regional) & Hln.be (link to archive.is)
Add Field & Stream
Add Nieuwsblad.be & Standaard.be (link to archive.is)
Add PhiloMag.com
Add Public.fr
Add Record.pt
Add The New York Post
Remove DN.no (fix obsolete)
Remove GElocal.it & Huffintonpost.it (fix obsolete)
Remove Il Secolo XIX, La Stampa & Limes Online (fix obsolete)
Fix Cmjornal.pt
Fix Grupo Vocento
Fix Koelner Stadt-Anzeiger & Koelnische Rundschau
Fix La Croix
Fix NHST Media Group
Fix Tagesspiegel.de (link to archive.is)
Fix The Spectator UK
Fix for Kiwi Browser/Android (Chrome-synch)
* v2.9.2.2 (2022-11-07)
Hotfix update rules (general paywall script)
Update block general paywall script (update Zephr-local)
* v2.9.2.0 (2022-11-06)
Add Mediapart.fr
Add The New York Sun
Update block general paywall script (fix Zephr-local & config sites.js)
Update block inline script (config sites.js)
Update contentScript & remove cookies (fixed runs)
* v2.9.1.0 (2022-10-30)
Add 4 more NHST Media Group sites
Add Citywire
Add Outdoor Life
Add Tagesspiegel.de (link to archive.is)
Add Tes Magazine
Fix Axios (overlay)
Fix Knack.be, LeVif.be & Kw.be (overlay)
Fix RugbyPass
* v2.9.0.0 (2022-10-23)
Add Humanite.fr
Add Philonomist (text)
Add The Scotsman
Remove Daily Nation (no paywall)
Remove MediaNama (fix obsolete)
Fix ABC.es (Sevilla)
Fix ESPN USA (link to archive.is)
Fix The Athletic (css)
* v2.8.9.0 (2022-10-16)
Add Albuquerque Journal
Add California Business Journals
Add iNews.co.uk
Add NTNews.com.au
Remove Mediahuis Belgie (fix obsolete)
Fix ArcInfo.ch (refresh & no tabId)
Fix Australia News Corp (Googlebot images)
Fix Bloomberg (edition)
Fix Espresso.repubblica.it (video)
Fix The Globe and Mail (only premium)
Fix The Hindu (geoId-fix redundant)
Update block general paywall script (Omeda Olytics)
* v2.8.8.0 (2022-10-09)
Add Evening Standard (UK)
Add Medscape
Add The Critic (UK)
Remove Alma Talent sites (hold Iltalehti.fi)
Remove NTNews.com.au (fix obsolete)
Remove Nuernberger Nachrichten (fix obsolete)
Fix Corriere dello Sport (subdomains)
Fix GEDI.it (only Googlebot)
Fix WaPo
* v2.8.7.0 (2022-10-02)
Add ArcInfo.ch
Add Axios
Add LaVoz.com.ar
Add NK News (free articles only)
Add Rheinische Post Mediengruppe
Add 5 more Gannett sites
Fix Clarin
Fix NHST Media Group
Fix NTNews.com.au
* v2.8.6.0 (2022-09-25)
Add Groupe Centre France (opt-in to custom sites)
Fix Aftonbladet.se
Fix Business Standard
Fix Estadao.com.br (amp)
Fix Hearst Communications (newspapers)
Fix The (New Orleans) Advocate
Fix The Athletic
Fix The Chronicle of Higher Education (& Philanthropy)
Update block general paywall script (Leaky Paywall/Wordpress)
* v2.8.5.0 (2022-09-18)
Add 60 Millions de consommateurs
Add BusinessPost.ie
Add Madavor Media sites (opt-in to custom sites)
Add Private Equity News
Add TheNewEuropean.co.uk
Add Weltkunst.de
Fix Esprit.presse.fr
Fix Grupo El Comercio
Fix Gruppo GEDI.it (login)
Fix L'Express.fr
Fix The Spectator UK (no amp)
Update options: add dark mode support
* v2.8.4.0 (2022-09-11)
Add PEI Media sites (opt-in to custom sites)
Fix Berliner Zeitung
Fix Faz.net (Zeitung timing)
Fix TownNews sites (css)
Update badge (notification: import as custom site)
* v2.8.3.0 (2022-09-04)
Add AutoPlus.fr
Add Omaha World-Herald (Lee Enterprises Group)
Add Popular Science
Remove Dark Reading (no paywall)
Fix Australian Community Media (overlay)
Fix L'Opinion.fr
Fix The Globe and Mail (images)
Fix The Toronto Star
Fix WSJ (mobile layout)
* v2.8.2.0 (2022-08-28)
Add New Scientist
Add The Chronicle of Philanthropy
Add The Hill
Fix Los Angeles Times & San Diego Union-Tribune
Fix Madsack Mediengruppe
Fix Mexico News Daily
Fix NYTimes (Cooking)
Fix The New York Review of Books (timing)
Fix amp: Business of Fashion, Le Parisien & Groupe SudOuest.fr
* v2.8.1.0 (2022-08-21)
Add Nw.de
Add Substack custom domains (opt-in to custom sites)
Add UOL.com.br
Remove Sanoma Media Finland (fix obsolete)
Fix Business Standard (mobile)
Fix El Correo & La Voz de Cadiz
Fix LaVie.fr
Fix LiveMint (css)
Fix (custom) group-sites (identify on type)
* v2.8.0.0 (2022-08-14)
Add Gazzetta.it
Add Valor Economico (Google webcache)
Remove Limburger.nl & Standaard.be (fix obsolete)
Remove Golem.de, Tagesspiegel.de, Welt.de & Wiwo.de (fix obsolete)
Remove World Politics Review (fix obsolete)
Fix Australia News Corp (amp-iframe)
Fix El Espanol (menu)
Fix Mediahuis Belgie (revert to old fix)
Fix Spiegel.de (link to archive.is)
Fix The New Republic (js)
Fix TheTimes.co.uk (link to archive.is & epaper-fix obsolete)
Open options on grouping of (enabled) sites
Update block general paywall script (Pico.tools)
* v2.7.9.0 (2022-08-07)
Add Limburger.nl
Add Standaard.be
Add Substack
Add SuomenSotilas.fi
Add Tagesspiegel.de
Add Welt.de
Add Wiwo.de
Fix Australian Community Media (css)
Fix ET Prime (mobile)
Fix Groene.nl
Fix Spiegel.de (Google webcache)
Fix The Athletic (css & amp)
Fix TheTimes.co.uk (Google webcache)
Grouping DPG Media (not ADR)
Grouping GEDI.it sites
Grouping Unidad Editorial
Grouping Westfaelische Mediengruppe
Redirect Google AMP cache (opt-in to custom sites)
Update block general paywall script (limit Evolok WordPress)
Update custom sites (load text from Google webcache)
* v2.7.8.0 (2022-07-31)
Add Crusoe (Brazil)
Add Golem.de
Add Groupe Capitales Medias (+ regional/opt-in to custom sites)
Grouping GenomeWeb sites
Remove Kurier.at (fix obsolete)
Fix Belfast Telegraph/Independent.ie (css)
Fix Bloomberg (graphics)
Fix Law.com (cookies)
Fix LesEchos.fr (timing)
Fix McClatchy Group (identify site)
Fix TownNews sites (css)
Fix Winnipeg Free Press (xhr)
* v2.7.7.0 (2022-07-24)
Add Saltwire Network (Canada)
Add StuDocu (no downloads)
Fix Folha de S. Paulo (piaui)
Fix Foreign Affairs (js)
Fix Krautreporter.de
Fix Le Devoir (cookie)
Fix Scientific American (magazine)
Update custom sites (import from GitLab)
* v2.7.6.0 (2022-07-17)
Add The Japan Times
Fix ilTirreno.it & LaNuovaSardegna.it
Fix Koelner Stadt-Anzeiger & Koelnische Rundschau
Fix Nrc.nl
Fix NYTimes (Cooking)
Update popup (archive-links)
* v2.7.5.0 (2022-07-10)
Add Architectural Digest (Conde Nast)
Add Handelszeitung.ch
Add Kw.be
Add Outlook Business (India)
Fix ABC.es (mobile)
Fix Knack.be & LeVif.be (subdomains-text)
Fix SOFREP (plus)
Fix WSJ (no Googlebot)
Update block general paywall script (update Evolok WordPress)
* v2.7.4.0 (2022-07-03)
Add Beobachter.ch
Add BQ Prime (former Bloomberg Quint)
Add ilTirreno.it
Add Spiegel.de (link to archive.is)
Remove Deutsche Wirtschafts Nachrichten (fix obsolete)
Fix Automobilwoche.de
Fix Financial Times (cookie-banner)
Fix Groupe SudOuest.fr
Fix Iltalehti.fi (videos)
Fix Knack.be & LeVif.be
Fix LaNuovaSardegna.it
Fix Observador.pt
Fix The Athletic (single domain)
Fix Times of India (no amp)
Update block general paywall script (remove GoogleTagManager)
* v2.7.3.0 (2022-06-26)
Add Artforum
Add Initium Media
Add L'Avenir (Belgium)
Add The Banker
Remove Dagens Nyheter (fix obsolete)
Remove Valor Economico (fix obsolete)
Fix Business Standard
Fix El Mercurio
Fix Helsingin Sanomat (dynamic-json)
Fix Koelner Stadt-Anzeiger & Koelnische Rundschau
Fix LesEchos.fr
Fix Nautilus
Fix Repubblica.it & LaStampa.it (videos-gtm)
* v2.7.2.0 (2022-06-06)
Add Estado de Minas (Brazil)
Add ilManifesto.it
Add The Irish Times
Remove Handelsblatt (fix obsolete)
Remove Study.com (fix obsolete)
Fix LesEchos.fr (refresh)
Fix Quartz (newsletter)
Fix Vrij Nederland (iframe)
Update block general paywall script (Zephr-local)
* v2.7.1.0 (2022-05-29)
Add Corriere dello Sport
Add Gazet van Antwerpen
Add Het Belang van Limburg
Add Het Nieuwsblad
Add SlideShare
Add The Financial Express (India)
Remove Scribd (fix obsolete)
Fix El Mercurio (+ regional/opt-in to custom sites)
Fix Telegraaf.nl
* v2.7.0.0 (2022-05-22)
Add group ARA.cat
Add LaVie.fr
Add Mallorca Zeitung
Add The Lawyer's Daily (Canada)
Fix ESPN USA (disable for Watch)
Fix The Globe and Mail (revert to old fix)
Fix TheTimes.co.uk (link to archive.is)
Fix Times of India
* v2.6.9.0 (2022-05-15)
Add The Star Malaysia
Add UnHerd (UK)
Remove The Japan Times (fix obsolete)
Fix Lequipe.fr (json)
Fix Live Law (amp)
Fix Telegraaf.nl
Fix The Australian (The Oz)
Fix The Dallas Morning News
Update block general paywall script (GoogleTagManager)
* v2.6.8.0 (2022-05-08)
Add De Tijd & L'Echo
Add Finance.si
Add group Mediahuis Noord (opt-in to custom sites for unlisted)
Add The Daily Wire
Remove DealStreetAsia (fix obsolete)
Fix Australian Community Media
Fix Bloomberg (newsletters)
Fix Knack.be & LeVif.be
* v2.6.7.0 (2022-05-01)
Add Puck.news
Add Sportico & WWD (group Penske Media Corporation)
Fix El Espectador
Fix eNotes
Fix Grupo Prensa Iberica (opt-in to custom sites for unlisted)
Fix Lequipe.fr (json)
Fix Medium custom domains
Update badge (site with no fix; X)
Update block general paywall script (Pico/Wordpress)
* v2.6.6.0 (2022-04-24)
Add Automobilwoche.de
Add Better Nutrition, Gym Climber, Peloton, Podium Runner & Rock and Ice
Add eNotes
Add Italia Oggi
Remove ilManifesto.it (fix obsolete)
Fix Barron's (continue reading)
Fix El Pais (amp/video)
Fix Fortune (magazine)
Fix The Spectator UK (amp-redirect)
* v2.6.5.0 (2022-04-18)
Add Aftonbladet.se
Add Investors' Chronicle (UK)
Add Nzz.ch Regional (opt-in to custom sites)
Add Outlook India
Fix ABC.es (mobile)
Fix Adweek (free articles only)
Fix Quartz (newsletter)
Fix The Athletic (Ink-layout)
Fix Vogue Business (amp)
Update block general paywall script (Ensighten)
Update block general paywall script (Evolok WordPress)
* v2.6.4.0 (2022-04-10)
Add El Periodico Extremadura
Add Nuernberger Nachrichten
Remove Algemeen Dagblad Regional (fix obsolete)
Remove NK News (fix obsolete)
Fix Berliner Zeitung (amp)
Fix The Globe and Mail (sections)
Fix The Hill Times (text)
Fix (custom) group-sites (limit identify on image)
Remove Cors Anywhere (cached articles)
* v2.6.3.0 (2022-04-03)
Add Diario Cordoba
Add El Periodico de Aragon
Add El Periodico de Espana
Add La Opinion A Coruna
Add La Opinion de Zamora
Add RedaktionsNetzwerk Deutschland
Fix Alma Talent sites (js-ads)
Fix Australia News Corp (amp)
Fix Helsingin Sanomat (dynamic-json)
Fix Madsack Mediengruppe
Fix NzHerald
* v2.6.2.0 (2022-03-27)
Add Badische Neueste Nachrichten
Add iPolitics.ca
Add LeNouvelEconomiste.fr
Add Muenstersche Zeitung
Add NewcastleHerald.com.au
Add S&P Global
Add Westdeutsche Zeitung
Remove HBR Taiwan (fix obsolete)
Fix Australian Community Media (json)
* v2.6.1.0 (2022-03-20)
Add Franc-Tireur.fr
Add group Hearst Communications magazines
Add Mid-Day (India)
Add Winnipeg Free Press (Canada)
Fix Algemeen Dagblad (regional; refresh)
Fix Folha de S. Paulo
Fix Funke Mediengruppe (opt-in to custom sites for unlisted)
Fix Lequipe.fr (refresh)
Update layout BPC GitLab bio
* v2.6.0.0 (2022-03-13)
Add Connaissance des Arts (France)
Add El Tiempo (Colombia)
Add LaMontagne.fr
Add Volksstimme.de
Fix American Affairs (js)
Fix Bloomberg
Fix Bloomberg Quint (amp)
Fix Economist (js typo)
Fix LaNouvelleRepublique.fr (js)
Fix LesEchos.fr (investir)
Fix NHST Media Group
Update block general paywall script (Weborama.fr)
* v2.5.9.0 (2022-03-06)
Add Causeur.fr
Add India Today (magazine)
Add La Opinion de Malaga
Add RugbyPass
Fix Iltalehti.fi (Youtube video/image no source)
Fix Inkl
Fix Internazionale.it (menu/images)
* v2.5.8.0 (2022-02-27)
Add Cycling Tips
Add Iltalehti.fi
Add La Opinion de Murcia
Add Postmedia Network (Canada)
Remove NewcastleHerald.com.au (fix obsolete)
Fix Westfalen-Blatt (gallery)
Fix update check (GitLab CORS issue or BitBucket http error 429)
Update custom sites (load text from json)
* v2.5.7.0 (2022-02-20)
Remove Ruhr Nachrichten (fix obsolete)
Fix Live Law
Fix NewcastleHerald.com.au
Fix Lequipe.fr (json)
Fix Neue Osnabrucker Zeitung (amp)
Fix Quotidiano.net sites
Update block general paywall script (Pigeon/WordPress)
* v2.5.6.0 (2022-02-13)
Add Conde Nast magazines & Vogue Business
Add Diario Correo (Grupo El Comercio)
Add Eastwest (it/en)
Add Groupe SudOuest.fr
Fix Australian Community Media (images)
Fix Lequipe.fr & LesEchos.fr (refresh)
Fix New York Magazine sites (cookies)
Fix NYTimes (game stats)
Fix Espresso.repubblica.it (amp)
Fix SeekingAlpha (captcha)
Fix TheTimes.co.uk (epaper & archive)
Update block general paywall script (limit NewsMemory)
* v2.5.5.0 (2022-02-06)
Remove Iltalehti.fi (fix obsolete)
Remove The Logic (fix obsolete)
Fix Australia News Corp (video-still)
Fix La Tercera (js)
Fix MIT Technology Review (TinyPass)
Fix TheTimes.co.uk (epaper)
Fix Times Literary Supplement (set referer Google)
Fix WaPo
* v2.5.4.0 (2022-01-30)
Add group Outside magazines
Remove L'Orient-Le Jour (fix obsolete)
Fix Australia News Corp (amp-redirect)
Fix Faz.net (timing)
Fix Grupo Prensa Iberica (Piano)
Fix The Chronicle (amp-redirect)
Fix The Seattle Times (update)
Fix The Telegraph (modal)
Fix The West Australian (regional)
Update popup (no more version-check)
* v2.5.3.1 (2022-01-23)
Hotfix block inline script
* v2.5.3.0 (2022-01-23)
Add Huffingtonpost.it
Add Outside
Fix Asia Times
Fix Cairns Post, Code Sports & The Advertiser
Fix Challenges.fr
Fix Clarin
Fix El Pais (menu subdomains)
Fix MediaNama (menu)
Fix MIT Sloan Management Review (refresh)
Fix The New Yorker (update)
* v2.5.2.0 (2022-01-16)
Add Mainichi Shimbun (Japan)
Add TownNews sites (local USA; opt-in to custom sites)
Remove Aachener Nachrichten & Zeitung (fix obsolete)
Remove De Tijd & L'Echo (fix obsolete)
Fix Bloomberg (quotes)
Fix McClatchy Group (amp-redirect & disable)
Fix Prospect Magazine (timing)
Fix Star Tribune (timing)
Fix The Business of Fashion
Fix The Jerusalem Post
Update block general paywall script (Zephr)
Update popup (domain to clear cookies)
* v2.5.1.0 (2022-01-09)
Add group Hearst Communications (local USA)
Fix Bloomberg (timing)
Fix Handelsblatt (no amp)
Fix The Indian Express (premium)
Fix amp: allow amp-consent
Fix trimmed referer (restrictions)
* v2.5.0.0 (2022-01-02)
Add Capital Gazette (local USA)
Add Groupe Nice-Matin (France)
Add Il Foglio (Italy)
Add Science (free articles only)
Add The Independent (UK - archive.today for premium)
Fix group Tribune Publishing Company (js)
Fix The New Statesman (Evolok)
Update popup (permission to clear cookies)
* v2.4.9.0 (2021-12-26)
Add El Espectador (Colombia)
Add ESPN USA (news only)
Add Les Inrockuptibles (France)
Remove Algemeen Dagblad (now regional only)
Fix Alma Talent sites (images & search)
Fix Helsingin Sanomat (dynamic)
Fix Lequipe.fr (json)
Fix The Diplomat (cookies)
Fix Times of India (amp)
Update custom sites (random ip/amp redirect)
* v2.4.8.0 (2021-12-19)
Add Aachener-Nachrichten.de
Add Allgaeuer-Zeitung.de
Add Lequipe.fr
Add LaLibre.be
Add LeVif.be
Add San Antonio Express-News (local USA)
Add The Indian Express
Add Vrij Nederland
Fix Bloomberg (permission block js)
Fix National Geographic USA (magazine)
Remove tabs-permission (amo - Firefox 86+)
* v2.4.7.0 (2021-12-12)
Add Koelner Stadt-Anzeiger & Koelnische Rundschau
Add The (New Orleans) Advocate
Remove Caixin Global (fix obsolete)
Fix Bloomberg (subscriber-only)
Fix Bloomberg Quint (bq blue)
Fix Inkl (images)
Fix Lecho.be (separate from Groupe Rossel)
Fix Repubblica sites (no amp)
Fix amp: ABC.es, elDiario.es & El Espanol
Fix amp: Artnet, Billboard, Digiday, Fortune, Lee Enterprises Group, Newsday, The Boston Globe, The Dallas Morning News & Vanity Fair
Fix amp: Los Angeles Times & San Diego Union-Tribune
Fix amp: USA Today & Gannett Group
Fix amp: Challenges.fr, Elle.fr, L'Opinion.fr & Science et Vie
Fix amp: Corriere della Sera, Il Messaggero & Quotidiano.net
Fix amp: Estadao.com.br, Grupo Abril & Folha de S. Paulo
Fix amp: ET Prime & LiveMint
Fix amp: Funke Mediengruppe
* v2.4.6.0 (2021-12-05)
Add Artnet
Add Internazionale.it
Fix Boston Globe
Fix El Mundo & Groupe EBRA (amp-iframe)
Fix Gannett Group (permissions for listed sites)
Fix Live Law (permission)
Fix The Business of Fashion
Fix The New Yorker (amp)
Fix TheTimes.co.uk (only link to archive.today)
Remove Saechsische Zeitung (fix obsolete)
Updated sites: check (options) & missing permission (badge)
* v2.4.5.0 (2021-11-21)
Add Advance Local (local USA)
Add Code Sports (Australia)
Add DealStreetAsia
Add Italian.tech
Add Spectator World
Fix Medium (faster)
Updated sites: add amp-redirect/code to contentScript
Updated (new) sites: popup-toggle
* v2.4.4.0 (2021-11-14)
Fix Nikkei Asian Review (cookies)
Fix Quora+ (banner)
Fix Repubblica sites (re-enable Googlebot)
Add rules for new sites (post-release; opt-in to custom sites)
Check for update version on startup/options (now opt-out)
Update group rules (post-release)
* v2.4.3.0 (2021-11-07)
Add Harvard Business Review China
Add Mitteldeutsche Zeitung
Remove Liberation.fr (fix obsolete)
Fix ElMundo.es (amp)
Fix Lee Enterprises Group
Fix LesEchos.fr (json)
Fix WaPo (images)
Fix WSJ (timing)
Check for update rules on startup (opt-in)
Refactor (custom) site rules
* v2.4.2.0 (2021-10-31)
Fix Barron's (timing)
Fix Il Fatto Quotidiano
Fix Boston Globe (incognito mode)
Fix Westfaelische Nachrichten & Westfalen-Blatt
* v2.4.1.3 (2021-10-28)
Fix Repubblica sites (disable Googlebot)
Fix Stratfor (forecasts)
Fix The Athletic (timing)
* v2.4.1.0 (2021-10-24)
Add Elle.fr
Add Marianne (France)
Remove Irish Times (fix obsolete)
Remove Sueddeutsche Zeitung (fix obsolete)
Fix ABC.es (Evolok)
Fix Bloomberg (charts)
Fix Business Standard
Fix Il Tirreno (GElocal.it)
Fix Financial Times (amp)
Fix Knack.be
Fix La Croix (timing)
Fix La Stampa (http error 403)
Fix The Athletic
Fix The Globe and Mail
Fix The New Yorker (homepage)
Fix Trouw.nl (timing)
Fix Wired (amp)
Update custom sites (block regex for default sites)
* v2.4.0.0 (2021-10-17)
Add Westfaelische Nachrichten (Germany)
Remove Australian Provincial Newspapers (obsolete)
Fix GElocal.it
Fix National Review
Fix Ruhr Nachrichten (amp)
Fix Tech in Asia (visual story)
Update custom sites (block regex, amp unhide & add imported)
Update options: enable new sites by default
* v2.3.9.0 (2021-10-10)
Add Lee Enterprises Group (local USA)
Fix Chronicle of Higher Education
Fix El Pais (amp/videos)
Fix MarketWatch (amp)
Fix Times Higher Education
Fix WSJ (Chinese)
Update block general paywall script (AzureEdge)
* v2.3.8.0 (2021-10-03)
Add NordLittoral.fr (Groupe Rossel)
Add Westfalen-Blatt.de
Remove Gazet van Antwerpen (fix obsolete)
Remove Republic.ru (fix obsolete)
Fix Bloomberg (blur)
Fix Boston Globe
Fix El Periodico de Catalunya (amp)
Fix Foreign Affairs (timing)
Fix Medium (cookies)
Fix Telerama.fr (mobile)
Fix VeloNews
Update daily users counter (amo)
* v2.3.7.0 (2021-09-26)
Add Aachener-Zeitung.de
Add Grupo Prensa Iberica (Spain)
Add Tampa Bay Times (local USA)
Add Telerama.fr
Add TheMarket.ch
Fix Challenges.fr (blur)
Fix LesEchos.fr (json)
Fix New York Magazine sites
Fix Repubblica.it & LaStampa.it (videos on Firefox)
Fix The Australian (option to disable Googlebot; http error 403)
Fix WSJ & Barron's (amp)
* v2.3.6.0 (2021-09-05)
Remove Wiwo.de (fix obsolete)
Fix Estadao.com.br
Fix Gestion & El Comercio (Peru)
Fix Handelsblatt (only non-premium articles)
Fix Il Fatto Quotidiano
Fix Il Secolo XIX (mobile)
Fix NyTeknik (images)
Fix NzHerald
Fix shz.de & svz.de
* v2.3.5.0 (2021-08-29)
Add Forbes
Add Law360 (free articles only)
Fix Bloomberg (graphics)
Fix Corriere della Sera (videos)
Fix Repubblica.it (podcasts)
* v2.3.4.1 (2021-08-23)
Fix group Crain Communications
* v2.3.4.0 (2021-08-22)
Add Ad Age & Automotive News (group Crain Communications)
Add MediaNews Group (local USA)
Add The Intercept
Remove Slader (obsolete)
Fix group Mediahuis Nederland Regional
Fix Medium (timing)
Fix The Australian
Fix The Daily Beast (proper/images)
* v2.3.3.0 (2021-08-15)
Add Live Law (India)
Add Sanoma Media Finland (+ aamulehti.fi & regional/opt-in)
Fix McClatchy Group (unlisted sites)
Fix MediaNama (modal)
Fix The Athletic
Fix The Daily Beast (members-only)