forked from bpc-clone/bpc_chrome_support
-
Notifications
You must be signed in to change notification settings - Fork 0
/
changelog.txt
2761 lines (2515 loc) · 73.7 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 - Chrome
Updates (install zip/crx-file): https://gitflic.ru/project/magnolia1234/bpc_uploads (or check X/Twitter)
Post-release
Remove Haaretz Group (fix obsolete)
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 Sueddeutsche Zeitung
Fix WSJ (jp subdomain; not cn)
Remove GitHub-links (use GitFlic)
* v3.7.8.0 (2024-08-04)
Remove Jane's Defence Weekly (fix obsolete)
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 (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 obsolete)
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 (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 obsolete)
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 (fix obsolete)
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 (fix obsolete)
Remove Saltwire Network (fix obsolete)
Remove Volksstimme.de (fix obsolete)
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 obsolete)
Fix Mediahuis Belgie (mobile)
Fix Nikkei Asian Review (Google webcache)
Fix Project Syndicate (no article)
Fix Seeking Alpha (mobile)
Fix Sueddeutsche Zeitung (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 (fix obsolete)
Remove LeMonde.fr (fix obsolete)
Remove Telerama.fr (fix obsolete)
Fix Courrier international (fetch from archive.is)
Fix NHST Media Group (json)
Fix Sueddeutsche Zeitung (main domain)
Fix The Economist (no podcasts+)
* v3.7.0.0 (2024-05-26)
Add DagensMedicin.se
Add Scholastic
Remove Private Equity News (fix obsolete)
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 (fix obsolete)
Remove Mediahuis Belgie (fix obsolete)
Remove StuDocu (fix obsolete)
Fix Ajc.com (css)
Fix Clarin (js)
Fix Financial News (London; 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 (fix obsolete)
Remove Wiwo.de (fix obsolete)
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 obsolete)
Fix Advance Local (json)
Fix Ajc.com (videos)
Fix Citywire
Fix El Cronista (js)
Fix Honolulu Star-Advertiser (css)
Fix McClatchy Group (js)
Fix Sueddeutsche Zeitung
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 (fix obsolete)
Remove Repubblica.it (fix obsolete)
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 (fix obsolete)
Remove The Banker (fix obsolete)
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
Add Newslaundry
Remove Bild.de (fix obsolete)
Remove Hln.be (fix obsolete)
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 obsolete)
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 (fix obsolete)
Remove Dn.se (fix obsolete)
Remove LeFigaro.fr (fix obsolete)
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 (fix obsolete)
Remove EWmagazine.nl (fix obsolete)
Remove Funke Mediengruppe (fix obsolete)
Remove Groupe Rossel (fix obsolete)
Remove Mediahuis Nederland Regional (fix obsolete)
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 obsolete)
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 obsolete)
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)
* 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 (fix obsolete)
Remove Otz.de, Thueringer-allgemeine.de & Tlz.de (Funke; fix obsolete)
Remove Wz.de (fix obsolete)
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 (fix obsolete)
Remove Westfalische Mediengruppe (fix obsolete)
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 useragent/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 Sueddeutsche Zeitung (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 (fix obsolete)
Remove LeTemps.ch (fix obsolete)
Remove Money.it (fix obsolete)
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
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 (fix obsolete)
Remove Groupe EBRA (fix obsolete)
Remove Nordwest Zeitung (fix obsolete)
Remove Wissenschaft.de (fix obsolete)
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; fix obsolete)
Remove The Star Malaysia (fix obsolete)
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)
Remove forcelist for Edge (MS bug)
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 obsolete)
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 (fix obsolete)
Remove Schwarzwaelder-bote.de (fix obsolete)
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 Sueddeutsche Zeitung (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 obsolete)
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 (fix obsolete)
Remove Hln.be (fix obsolete)
Remove VosgesMatin.fr (EBRA; fix obsolete)
Fix Albuquerque Journal (css)
Fix Apollo Magazine
Fix Barron's (amp-redirect)
Fix Faz.net (json)
Fix Financial News (London)
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 obsolete)
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 Salzburger Nachrichten
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 (fix obsolete)
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)
Add PourLaScience.fr
Add SpringerMedizin.de
Fix Automobilwoche.de (js)
Fix Inc42 (js)
Fix MarketWatch (amp-redirect)
Fix Outside magazines (domains obsolete)
Fix Puck.news (ld_json_url)
Fix Tes Magazine (css)
Fix The Diplomat (magazine)
Fix The Wrap (ld_json_url)
Fix Tijd.be (belegger subdomain)
Update block general paywall script (fix Ippen.space)
* v3.3.2.0 (2023-09-03)
Add Beleggersbelangen.nl (Roularta)
Add Revista Oeste (Brazil)
Add The Scientist (archive)
Add Wissenschaft.de
Fix BQ Prime (js)
Fix Clarin (js & error)
Fix Fortune (css)
Fix Forbes (menu)
Fix Groupe SynerJ Media
Fix Nikkei Asian Review (Google webcache)
Fix Scientific American (js)
Fix Star Tribune (css)
Fix WSJ (amp live coverage)
Maintenance background tab
Maintenance updated sites (cs_block, toggle, custom flex & grouped)
Fix for Kiwi Browser 116 (refresh)
* v3.3.1.0 (2023-08-27)
Add Bridge Tower Media (opt-in to custom sites)
Add Fast Company
Add LeTemps.ch
Add Tuttosport
Remove DN.no (fix obsolete)
Fix Financial Times (refresh)
Fix Forbes (js)
Fix Media Group Westfalen (identify sites)
Fix Mediahuis Noord (json)
Fix Nikkei Asian Review (refresh)
Fix WSJ (amp 404 & restore option to disable Googlebot)
Add forcelist for BPC extension (Edge 116+)
* v3.3.0.0 (2023-08-20)
Add Cieletespace.fr
Add Delinian Group
Add Pensions & Investments (Crain)
Add Precision Medicine Online (Crain)
Remove Initium Media (fix obsolete)
Fix Crusoe.com.br (new domain)
Fix Ksta.de & Rundschau-online.de (json)
Fix The Press-Enterprise (new domain)
Fix WSJ (mobile & remove option to disable Googlebot)
Grouping/fix GenomeWeb sites (Crain)
Update custom sites (add_ext_link: Google Search Tool)
* v3.2.9.0 (2023-08-13)
Add 4 more Lee Enterprises Group sites
Add LaStampa.it (GEDI.it)
Add The American Conservative
Add The Week (UK & USA)
Remove The Hollywood Reporter (no paywall)
Fix Harvard Business Review (js)
Fix Stylist.co.uk (css)
Fix The Economic Times (print)
Fix The Toronto Star (homepage)
Fix Times of India (css)
Fix mobile user-agent for Google webcache (Firefox-synch)
Update custom sites (ld_json_url)
* v3.2.8.0 (2023-08-06)
Add America's Test Kitchen
Add Autocar.co.uk
Add Bar and Bench (IN)
Add Crikey.com.au
Add Swarajyamag (IN)
Add Washington Examiner
Fix EUobserver (css)
Fix Grupo Vocento (limit amp-redirect)
Fix The Economic Times (update mobile redirect)
Fix The Economist (interactive)
Update custom sites (add_ext_link: Google webcache)
Update popup (Clearthis.page)
* v3.2.7.0 (2023-07-30)
Add Mannheimer-Morgen.de (Haas)
Add RuhrNachrichten.de (+ Media Group Westfalen; opt-in to custom sites)
Add Stereogum
Add The Verge (newsletter)
Remove Allgaeuer-Zeitung.de (fix obsolete)
Fix Automobilwoche.de (js)
Fix BizJournals (anti-adblocker)
Fix Bloomberg (xhr; disable Dark Reader)
Fix El Diario Vasco (mobile amp-redirect)
Fix New Scientist (regwall)
Fix Star Tribune (mobile)
Fix The Japan Times (json for archive)
Fix Verlagsgruppe Rhein Main
Fix Weltkunst.de
Maintenance updated sites (clear)
* v3.2.6.0 (2023-07-23)
Add Auto-motor-und-sport.de
Add Business-standard.com (json)
Add Medienholding Süd (opt-in to custom sites for unlisted)
Add Money.it
Add Nordwest Zeitung
Add The Times Literary Supplement (json)
Add TorStar local
Add Weltkunst.de
Fix Ad Age (js)
Fix Australian Community Media (css & identify sites)
Fix Euromoney (Google webcache)
Fix Medium (identify member-only)
Fix Puck.news (cached articles only)
Fix Star Tribune (images/comments)
Fix The Toronto Star (js)
Fix Verlagsgruppe Rhein Main (json & identify sites)
Maintenance request host permission (disabled for mobile)
Update custom/updated sites (fix ld_google_webcache)
* v3.2.5.0 (2023-07-16)
Add El Tribuno (AR)
Add Sabado.pt
Remove TorStar local (fix obsolete)
Remove VmnMedia.nl Group (fix obsolete)
Fix Australia News Corp (amp-fix)
Fix Bloomberg (json)
Fix Cmjornal.pt & Record.pt (amp)
Fix Grupo Abril (js-inline)
Fix (custom) Medium (link to Google webcache)
Fix Telegraaf.nl (columns)
Fix WSJ (mobile)
* v3.2.4.0 (2023-07-09)
Add Delish, Elle Decor, Harper's Bazaar & Oprah Daily (Hearst)
Add NWT Media.se (opt-in to custom sites)
Add Stuttgarter-zeitung.de
Remove Aftonbladet.se (fix obsolete)
Remove Dn.se (fix obsolete)
Remove Golem.de (fix obsolete)
Remove LeFigaro.fr (fix obsolete)
Remove Limburger.nl (fix obsolete)
Remove Quillette (fix obsolete)
Remove Tagesspiegel.de (fix obsolete)
Fix BusinessPost.ie (json)
Fix Crusoe.uol.com.br (js)
Fix Hearst Communications magazines (js)
Fix Mediahuis Noord (regional)
Fix Midi-Olympique.fr (new domain Rugbyrama.fr)
* v3.2.3.0 (2023-07-02)
Add Groupe ESH Medias (ch)
Add Hln.be (link to archive.is)
Add MacroBusiness.com.au (ld_json_nuxt)
Add Puck.news
Add Zeit.de (link to archive.is)
Remove AerzteBlatt.de (fix obsolete)
Remove LePoint.fr (fix obsolete)
Remove Stratfor (fix obsolete)
Remove The Times Literary Supplement (fix obsolete)
Remove Time Magazine (no paywall)
Fix Beobachter.ch & Handelszeitung.ch
Fix Foreign Policy (Insider)
Fix Telegraaf.nl (images)
* v3.2.2.0 (2023-06-25)
Add Follow the Money (Ftm.eu)
Add Groupe SynerJ Media (opt-in to custom sites)
Add HinduTamil.in
Fix Gazzetta.it (text only)
Fix LeScienze.it
Fix LeTelegramme.fr (css)
Fix The Athletic (timing)
Fix Times of India (amp-images)
Maintenance updated sites (version)
* v3.2.1.0 (2023-06-05)
Add Boersen-zeitung.de
Fix El Mercurio (not Inversiones/Legal)
Fix ESPN USA
Fix Gazzetta.it (timing)
Fix Telegraaf.nl
* v3.2.0.0 (2023-05-29)
Add El Cronista (AR)
Add GauchaZH
Add Golem.de (link to archive.is)
Add TechTarget Group
Add VmnMedia.nl Group (opt-in to custom sites)
Remove Mz.de & Volksstimme.de (fix obsolete)
Remove Weltkunst.de (fix obsolete)
Fix Challenges.fr & Sciences et Avenir.fr
Fix Defector (cookie)
Fix Mediahuis Noord (json)
Fix Quora (AI bot crash)
Fix The Athletic (Kiwi)
Fix TheTimes.co.uk (overlay)
Fix TownNews sites (encrypted)
Add PowerShell-script for extension allowlist
Update popup (link to Google Search Tool)
* v3.1.9.0 (2023-05-21)
Remove (custom) Substack (fix obsolete)
Remove Sueddeutsche Zeitung (fix obsolete)
Fix Citywire
Fix DN.no
Fix Gruppo SAE.it (free articles only)
Fix LePoint.fr
Fix Schwaebische.de
Fix Tagesspiegel.de (not background/checkpoint)
Fix The Globe and Mail (title/comments)
Update custom sites/popup (remove Google Search Tool)
* v3.1.8.0 (2023-05-14)
Add Dn.se (link to archive.is)
Add Monocle (UK)
Add Stylist.co.uk
Fix Advance Local (no amp)
Fix El Espanol (js)
Fix El Mercurio (Inversiones)
* v3.1.7.3 (2023-05-08)
Remove Medienhaus Aachen (fix obsolete)
Fix BusinessPost.ie (link to archive.is)
Maintenance contentScript (sanitize html-input)
* v3.1.7.0 (2023-05-07)
Add Cairns Post, Geelong Advertiser & Townsville Bulletin (Australia News Corp)
Add Arizent sites (opt-in to custom sites)
Remove Puck.news (fix obsolete)
Fix Adweek (premium)
Fix ilMessaggero.it (+ regional sites)
Fix Mediahuis Noord (json)
Fix Modern Healthcare (sponsored)
Fix Sportico (amp)
Update custom (flex) sites (no fix group)
Update custom sites (load text from json_next)
* v3.1.6.0 (2023-04-30)
Remove Zeit.de (fix obsolete)
Fix Bloomberg (Live TV limit)
Fix Gannett Group (redirect restricted)
Fix La Vanguardia (xhr)
Fix Mediahuis Noord (refresh)
Fix Roularta Media Group (Firefox-sync)
* v3.1.5.0 (2023-04-23)
Add Cox First Media (opt-in to custom sites)
Remove NK News (fix obsolete)
Fix ESPN USA
Fix Groupe IPM
Fix NYTimes (interactive/games)
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 (link to 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.com (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 LeFigaro.fr (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 The 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 (Firefox-synch)
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)