-
Notifications
You must be signed in to change notification settings - Fork 1
/
nojs_fix.txt
1033 lines (769 loc) · 46.2 KB
/
nojs_fix.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
! Title: NoJS Fix
! Description: Filters to fix images not loading in noscript mode
! Expires: 8 hours
! Last modified: 2024.11.18.1
! Homepage: https://github.com/stephenhawk8054/NoJSFix
! License: https://github.com/stephenhawk8054/NoJSFix/blob/main/LICENSE
!
! GitHub issues: https://github.com/stephenhawk8054/NoJSFix/issues
! GitHub pull requests: https://github.com/stephenhawk8054/NoJSFix/pulls
! ====================================== Generic fixes ======================================
###page-preloader
###mdp-deblocker-js-disabled
###nojs-banner
##.no-js-message
##.u-noJsOnly
! 1337x.*
1337x.*##body:style(display: block !important;)
! 2minutemedicine.com
2minutemedicine.com##+js(set-attr, html.no-js img.lazyload[data-src][src$="empty.png"], src, [data-src])
2minutemedicine.com##html.no-js img.lazyload:style(display: block !important; opacity: 1 !important;)
! 7news.com.au
7news.com.au##.video-js__overlay:style(opacity: 1 !important;)
! 9to5google.com
9to5google.com##.swiper-container:style(opacity: 1 !important;)
! https://abnormalsecurity.com/blog/cybercriminals-exploit-docusign
abnormalsecurity.com##.opacity-0:remove-class(opacity-0)
||abnormalsecurity.com/_next/image?url=http$image,doc,uritransform=/w=\d+/w=3840/
! https://agi-sphere.com
agi-sphere.com##:is(figure, span) > img[src^="data:image"]
agi-sphere.com##+js(set-attr, a > img.lazyload[data-src][src^="data:image"]:not(figure > img), src, [data-src])
! https://www.airgradient.com
airgradient.com##.preloader
! allthatsinteresting.com
allthatsinteresting.com##.lazyload.img-wrap
! allthings.how
allthings.how##+js(ss, img[loading="lazy"][data-origin-src]:not([src]), dataset originSrc)
! allthingsstatistics.com
allthingsstatistics.com##+js(ss, img.ezlazyload[data-ezsrc][src^="data:image"], dataset ezsrc)
allthingsstatistics.com##img.ezlazyload[data-ezsrc][src]:style(opacity: 1 !important;)
! analyzemath.com
analyzemath.com##+js(ss, img.ezlazyload[data-ezsrc][src^="data:image"], dataset ezsrc)
! techradar-sites
! https://kotaku.com/redbox-machines-kiosks-free-movies-dvds-stealing-reddit-1851694915
androidcentral.com,gamesradar.com,lifehacker.com,livescience.com,kotaku.com,pcgamer.com,space.com,techradar.com,tomsguide.com,tomshardware.com,whathifi.com,windowscentral.com##+js(ss, img.lazy-image-van[src$="/missing-image.svg"], dataset originalMos)
androidcentral.com,gamesradar.com,lifehacker.com,livescience.com,kotaku.com,pcgamer.com,space.com,techradar.com,tomsguide.com,tomshardware.com,whathifi.com,windowscentral.com##.see-more__button-container
androidcentral.com,gamesradar.com,lifehacker.com,livescience.com,kotaku.com,pcgamer.com,space.com,techradar.com,tomsguide.com,tomshardware.com,whathifi.com,windowscentral.com##.see-more__filter
androidcentral.com,gamesradar.com,lifehacker.com,livescience.com,kotaku.com,pcgamer.com,space.com,techradar.com,tomsguide.com,tomshardware.com,whathifi.com,windowscentral.com##.text-copy :is(ol, ul):style(margin-bottom: 1em !important;)
androidcentral.com,gamesradar.com,lifehacker.com,livescience.com,kotaku.com,pcgamer.com,space.com,techradar.com,tomsguide.com,tomshardware.com,whathifi.com,windowscentral.com##.text-copy ol:style(list-style: decimal inside !important;)
androidcentral.com,gamesradar.com,lifehacker.com,livescience.com,kotaku.com,pcgamer.com,space.com,techradar.com,tomsguide.com,tomshardware.com,whathifi.com,windowscentral.com##.text-copy ol li:style(line-height: 1.5 !important;)
androidcentral.com,gamesradar.com,lifehacker.com,livescience.com,kotaku.com,pcgamer.com,space.com,techradar.com,tomsguide.com,tomshardware.com,whathifi.com,windowscentral.com##.js_expandable-container div[class]:style(max-height: unset !important;)
lifehacker.com,kotaku.com##+js(ss, img[data-srcset][src^="data:image"], dataset srcset, 1)
lifehacker.com,kotaku.com##+js(ss, img[data-src][src^="data:image"], dataset src)
lifehacker.com,kotaku.com##+js(ss, picture > source[data-srcset][srcset^="data:image"], dataset srcset)
lifehacker.com,kotaku.com##+js(ss, video[data-poster], dataset poster)
windowscentral.com##+js(ss, iframe[data-lazy-src]:not([src]), dataset lazySrc)
windowscentral.com##iframe[data-lazy-src]:style(display: block !important;)
! androidfoss.com
androidfoss.com##img[data-lazyloaded][src^="data:image"]
! androidheadlines.com
androidheadlines.com##+js(ss, div.lazyload[data-bg][style^="background-image"], dataset bg)
androidheadlines.com##div.lazyload[data-bg][style^="background-image"]:style(display: block !important;)
androidheadlines.com##p > img.lazyload[src^="data:image"]
! https://www.androidpolice.com
androidpolice.com##+js(ss, picture > source[data-srcset]:not([srcset]), dataset srcset)
! https://www.animenewsnetwork.com/
animenewsnetwork.com##+js(set-attr, html.js-off img.lazyload[data-src], src, [data-src])
animenewsnetwork.com##img.lazyload[data-src]:style(display: block !important;)
animenewsnetwork.com##a.marquee-item:style(opacity: 1 !important;)
! arabnews.com
arabnews.com##+js(ss, img[data-lazy]:not([src]), dataset lazy)
arabnews.com##.slider-item:style(opacity: 1 !important;)
! PMC-sites
artnews.com,billboard.com,deadline.com,dirt.com,hollywoodreporter.com,rollingstone.com,sheknows.com,sportico.com,spy.com,tvline.com,variety.com,vibe.com,wwd.com##+js(ss, img[data-lazy-src], dataset lazySrc)
artnews.com,billboard.com,deadline.com,dirt.com,hollywoodreporter.com,indiewire.com,robbreport.com,rollingstone.com,sheknows.com,sportico.com,spy.com,tvline.com,variety.com,vibe.com,wwd.com##+js(ss, iframe[data-lazy-src][src^="javascript", dataset lazySrc)
artnews.com,billboard.com,deadline.com,dirt.com,hollywoodreporter.com,indiewire.com,robbreport.com,rollingstone.com,sheknows.com,sportico.com,spy.com,tvline.com,variety.com,vibe.com,wwd.com##.carousel-content:style(visibility: visible !important;)
artnews.com,billboard.com,deadline.com,dirt.com,hollywoodreporter.com,indiewire.com,robbreport.com,rollingstone.com,sheknows.com,sportico.com,spy.com,tvline.com,variety.com,vibe.com,wwd.com##.js-Flickity-cell:style(opacity: 1 !important; visibility: visible !important;)
artnews.com,billboard.com,deadline.com,dirt.com,hollywoodreporter.com,indiewire.com,robbreport.com,rollingstone.com,sheknows.com,sportico.com,spy.com,tvline.com,variety.com,vibe.com,wwd.com##.js-Flickity-loading
indiewire.com##.wp-caption > img
robbreport.com##+js(ss, img.c-lazy-image__img[data-lazy-src][src$="lazyload-fallback.jpg", dataset lazySrc)
robbreport.com##.featured-image > a > img[data-lazy-src]
! https://artsysops.com
artsysops.com##img.lazyload[src^="data:image"]
! https://www.atlasobscura.com
atlasobscura.com##+js(ss, img.lazy[data-src], dataset src)
atlasobscura.com##img:is(.lazy, .lazyloading)[src]:style(opacity: 1 !important; height: auto !important; padding-top: 0 !important;)
atlasobscura.com##.splide,*:not(:defined):style(visibility: visible !important;)
atlasobscura.com##.splide button i:empty:upward(.splide button)
atlasobscura.com##.splide img:style(width: auto !important;)
atlasobscura.com##.splide__slide:style(width: fit-content !important)
! axelar.network
axelar.network##.opacity-0:remove-class(opacity-0)
! bitwarden.com
bitwarden.com###top-accordion:style(margin-bottom: 0px !important;)
bitwarden.com##img[loading="lazy"][src]:style(opacity: 1 !important;)
! bleepingcomputer.com
bleepingcomputer.com##+js(ss, img.b-lazy[data-src][src^="data:image"], dataset src)
! blockdaemon.com
blockdaemon.com##[data-jazzy-scroll]:style(opacity: 1 !important;)
! blocktower.com
blocktower.com##+js(ss, img[data-src]:not([src]):not([loading="lazy"]), dataset src)
blocktower.com##.sqs-dynamic-text:style(visibility: visible !important;)
blocktower.com##img[data-src]:style(opacity: 1 !important;)
! blog.mozilla.org
blog.mozilla.org##iframe:style(display: block !important;)
! https://bongda24h.vn/chien-thuat-a-z/nghich-ly-trong-sach-luoc-cua-luis-enrique-thanh-bai-tai-ronald-araujo-394-385238.html
bongda24h.vn##+js(set-attr, source.lazyload[data-srcset][srcset^="data:image"], srcset, [data-srcset])
! bongdaplus.vn
bongdaplus.vn##+js(ss, img.lzl[data-src][src^="data:image"], dataset src)
! https://brilliant.org/wiki/transience-and-recurrence/
brilliant.org###loggedout-wiki-footer
! browsertouse.com
browsertouse.com##+js(ss, img.ezlazyload[data-ezsrc][src^="data:image", dataset ezsrc)
! builtin.com
builtin.com##+js(ss, html:not(.js) img.b-lazy[data-src][src^="data:image"], dataset src)
builtin.com##html:not(.js) img.b-lazy[data-src][src]:style(display: block !important;)
builtin.com##html:not(.js) .wrap-share-social-fixed:style(opacity: 1 !important;)
! c4isrnet.com
c4isrnet.com##.nav-logo:style(opacity: 1 !important; visibility: visible !important;)
! https://careerfoundry.com
careerfoundry.com##img.lazy-hidden
! cbsnews.com
cbsnews.com##+js(ss, img.lazyload[data-srcset][srcset^="data:image"], dataset srcset, 1, srcset)
cbsnews.com##+js(ss, video.lazyload[data-poster]:not([poster]), dataset poster)
! chess.com
chess.com##+js(ss, iframe[data-src][src$=".svg"], dataset src)
chess.com##+js(ss, img[data-src][src$=".svg"], dataset src)
! chessjournal.com
chessjournal.com##+js(ss, html.no-js img.lazyload[data-src][src$="-empty.png"], dataset src)
chessjournal.com##html.no-js img.lazyload[data-src][src]:style(opacity: 1 !important;)
! chinadialogueocean.net
chinadialogueocean.net##+js(ss, img.lazy[data-src]:not([src]), dataset src)
chinadialogueocean.net##+js(ss, img.lazy__placeholder, nextElementSibling attributes src value)
chinadialogueocean.net##img.lazy__placeholder:style(filter: unset !important;)
! chrome.google.com
chrome.google.com##img[src]:style(opacity: 1 !important;)
! https://chromeunboxed.com/say-hello-to-the-new-modern-google-sign-in-page/
chromeunboxed.com##+js(set-attr, img.ezlazyload[src^="data:image"][data-ezsrc], src, [data-ezsrc])
! clashmusic.com
clashmusic.com##+js(ss, img.lazy[data-src]:not([src]), dataset src)
! cleantechnica.com
cleantechnica.com##+js(ss, iframe[data-src][src="about:blank"], dataset src)
cleantechnica.com##+js(ss, img.avatar[data-loading="lazy"][data-src]:not([data-orig-file])[src^="data:image"], dataset src)
cleantechnica.com##+js(ss, img[data-orig-file][src^="data:image"], dataset origFile)
cleantechnica.com##.mrf-sectionsHint div.img.mrf-article-image > span
cleantechnica.com##span.mrf-detailsMedia > span
! cnet.com
cnet.com##picture:style(opacity: 1 !important;)
cnet.com##picture > img[src=""]
! https://codefordev.com
codefordev.com###load_spinner
! codelivly.com
codelivly.com##+js(ss, img.lazyload[data-src][srcset^="data"], dataset src, , srcset)
codelivly.com##img.lazyload:style(display: block !important; opacity: 1 !important; height: auto !important;)
! computerworld.com
computerworld.com##+js(ss, img.lazy[data-original]:not([src]), dataset original)
computerworld.com##+js(ss, img[data-lazy]:not([src]):not([data-original]), dataset lazy)
! https://corporatefinanceinstitute.com/resources/data-science/statistics-for-finance/
corporatefinanceinstitute.com##+js(set-attr, img.lazy[data-src], src, [data-src])
corporatefinanceinstitute.com##img.lazy[data-src]:style(visibility: visible !important;)
! cybercx.co.nz
cybercx.co.nz##img[loading="lazy"]:style(display: block !important;)
! cybernews.com
cybernews.com##+js(set-attr, img.lazyload[data-src][src^="data:image"], src, [data-src])
! dailymail.co.uk
dailymail.co.uk##[src^="data:image/gif;base64,"]
! dantri.com.vn
dantri.com.vn##+js(ss, img[data-src][src^="data:image"], dataset src)
! https://www.darkreading.com
darkreading.com###container-main:style(opacity: 1 !important;)
darkreading.com###overlay-fixed-all-screen
darkreading.com##.announcement
! dataconomy.com
dataconomy.com##+js(ss, html.no-js iframe[data-lazyloaded="1"][data-litespeed-src][src="about:blank"], dataset litespeedSrc)
dataconomy.com##+js(ss, html.no-js img[loading="lazy"][data-src][src^="data:image"], dataset src)
! https://debug.to
debug.to###preloader
debug.to##.qa-a-form:style(display: block !important;)
! devblogs.microsoft.com
devblogs.microsoft.com##+js(ss, img.lazyload[data-srcset][src^="data:image"], dataset srcset, 1)
! devconnected.com
devconnected.com##+js(set-attr, img.penci-lazy[data-src][src^="data:image"], src, [data-src])
devconnected.com##+js(ss, a[data-bgset], dataset bgset)
devconnected.com##a[data-bgset]:style(animation: unset !important; background-size: contain !important;)
! dexerto.com
dexerto.com##.invisible:remove-class(invisible)
! diakov.net
diakov.net##+js(ss, img#lazyATS[src^="data:image"], dataset src)
! digitalhygge.com
digitalhygge.com##+js(ss, img[data-lazy="true"][src$="transparent.gif"][data-src], dataset src)
digitalhygge.com##img[data-lazy="true"]:style(opacity: 1 !important;)
! digitaltrends.com
digitaltrends.com##+js(ss, img.dt-lazy-pending[data-dt-lazy-src][src^="data:image"], dataset dtLazySrc)
digitaltrends.com##img.dt-lazy-pending[data-dt-lazy-src][src]:style(opacity: 1 !important;)
! https://www.diskanalyzer.com
diskanalyzer.com###loader
diskanalyzer.com##+js(ss, img.lazyload[data-src]:not([src]), dataset src)
! djangostars.com
djangostars.com##+js(ss, img.nitro-lazy[nitro-lazy-src][src^="data:image"], attributes nitro-lazy-src value)
! documentjournal.com
documentjournal.com##+js(ss, html.no-js img.lazyload[data-src][src], dataset src)
documentjournal.com##html.no-js img.lazyload[src]:style(opacity: 1 !important;)
! https://dotsecurity.com/insights/blog-are-passphrases-more-secure-than-passwords
dotsecurity.com##[style*="opacity:0"]:style(opacity: 1 !important;)
! dpreview.com
dpreview.com##+js(ss, img.lazyload[data-src]:not([src]), dataset src)
dpreview.com##img[style]:style(display: block !important;)
! https://www.eff.org
eff.org##.primary-nav-nojs
! ehn.org
ehn.org##+js(ss, amp-img img, parentElement parentElement attributes src value)
ehn.org##+js(ss, img.rm-lazyloadable-image[data-runner-src][src^="data:image"], dataset runnerSrc)
ehn.org##+js(rt, amp-img[src], img)
ehn.org##.i-amphtml-layout-intrinsic:style(height: auto !important;)
ehn.org##i-amphtml-sizer
! https://www.empireofthekop.com/2024/07/28/van-den-berg-reaction-liverpool-asking-price/
empireofthekop.com##+js(set-attr, [data-src]:not([src]), src, [data-src])
empireofthekop.com##.lazyload:style(opacity: 1 !important;)
! https://blog.esper.io
esper.io##.sh-page-loader
! every.to
every.to##html:style(opacity: 1 !important;)
! explorecams.com
explorecams.com##+js(ss, img.lazy[data-src][src^="data:image"], dataset src)
! fastcompany.com
fastcompany.com##+js(ss, img.lazyload[data-src]:not([src]), dataset src)
fastcompany.com##+js(ss, img.lazyload[data-srcset]:not([src]):not([data-src]), dataset srcset, 1)
fastcompany.com##img.lazyload[data-srcset]:not([data-src]):style(opacity: 1 !important;)
fastcompany.com##img.lazyload[data-src]:style(opacity: 1 !important;)
fastcompany.com##video.lazyload[poster]:style(opacity: 1 !important;)
! finance.yahoo.com
finance.yahoo.com##.caas-img-container.caas-img-loader::after:style(background: transparent !important;)
finance.yahoo.com##img.caas-img:style(opacity: 1 !important;)
! fintechfutures.com
fintechfutures.com##+js(ss, html.no-js div.lazy[data-background], dataset background)
fintechfutures.com##+js(ss, html.no-js img.lazy[data-src][src$="placeholder.jpg"], dataset src)
fintechfutures.com##html.no-js #body-wrapper:style(opacity: 1 !important;)
! flatlogic.com
flatlogic.com##+js(ss, img[loading="lazy"][data-src]:not([src]), dataset src)
flatlogic.com##.owl-carousel, .process-block, img[loading="lazy"][data-src]:style(display: block !important;)
flatlogic.com##body.loading:remove-class(loading)
flatlogic.com##section.article .container img[src^="data:image"]
! forbes.com
forbes.com##.image-embed__placeholder:style(height: auto !important; padding-top: 0px !important;)
forbes.com##.amp-imgratio
forbes.com##img[style*="position: absolute"]:style(position: inherit !important;)
forbes.com##+js(rt, amp-img[src], img)
forbes.com##+js(rt, progressive-image[src], img)
forbes.com##+js(ss, progressive-image[background-image]:not([src]), attributes background-image value)
! frasesdemoda.com
frasesdemoda.com##+js(set-attr, img.lazyload[data-src][src$="/loader.gif"], src, [data-src])
! gadgets360.com
gadgets360.com##+js(ss, iframe[data-src]:not([src]), dataset src)
gadgets360.com##+js(ss, img.lazy[data-original][src], dataset original)
! gadgetstouse.com
gadgetstouse.com##+js(ss, img.ezlazyload[data-ezsrc][src^="data:image"], dataset ezsrc)
! https://www.ghostarrow.com/ark-survival-ascended-freezing-in-the-character-creation-fix
ghostarrow.com##+js(set-attr, img.ezlazyload[src^="data:image"][data-ezsrc], src, [data-ezsrc])
! gizchina.com
gizchina.com##+js(ss, span.mrf-galleryGrid__row > img[data-src], dataset src)
gizchina.com##span.mrf-galleryGrid__row > span
gizchina.com##span.mrf-image:style(height: auto !important; padding-bottom: 0px !important;)
gizchina.com##span.mrf-image > span > img:style(height: auto !important; width: auto !important;)
gizchina.com##div.mrf-article-image:style(background-image: unset !important;)
gizchina.com##div.mrf-article-image > img
! gizmodo.com
gizmodo.com##+js(ss, img[data-srcset][src^="data:image"], dataset srcset, 1)
gizmodo.com##+js(ss, picture.lazy-picture > source[data-srcset][srcset^="data:image"], dataset srcset)
gizmodo.com##+js(ss, video[data-poster], dataset poster)
gizmodo.com##+js(ss, video[data-postersrc][poster^="data:image"]:not([data-poster]), dataset postersrc)
gizmodo.com##+js(ss, iframe.lazyload[data-src]:not([src]), dataset src)
gizmodo.com##.js_expandable-container-button:upward(1)
gizmodo.com##.js_starterpost div:not([id]):not([class]):upward(1):style(max-height: unset !important;)
gizmodo.com##iframe.lazyload[data-src]:style(height: auto !important;)
! glamour.com
glamour.com##span.summary-item__image:style(opacity: 1 !important;)
! govtech.com
govtech.com##+js(ss, picture > source[data-lazy-load="true"][data-srcset][srcset^="data:image"], dataset srcset)
! gq.com
gq.*##span.responsive-asset:style(opacity: 1 !important;)
! grammarly.com
grammarly.com##+js(ss, img.lazyload[data-src]:not([src]), dataset src)
! https://www.groovypost.com
groovypost.com##img[data-lazyloaded="1"][src^="data:image"]
! grunge.com
grunge.com##+js(ss, img.lazyload[data-lazy-src][src^="data:image"], dataset lazySrc)
! hevodata.com
hevodata.com##+js(ss, img.lazy[data-src]:not([src]), dataset src)
! hoimetruyen.com
hoimetruyen.com##+js(ss, img.lazyload[data-src][src^="data:image"], dataset src)
! hostinger.com
hostinger.com##+js(ss, img[data-lazy-src][src^="data:imagge"], dataset lazySrc)
! hothardware.com
hothardware.com##+js(ss, img[data-src][src^="data:image"], dataset src)
! https://www.howstuffworks.com
howstuffworks.com##+js(ss, img[data-src][src^="data:image"], dataset src)
howstuffworks.com##picture + span
! howtogeek.com
howtogeek.com##+js(ss, img[data-pagespeed-lazy-src], dataset pagespeedLazySrc)
! howtopronounce.com
howtopronounce.com##+js(ss, img[loading="lazy"][data-src]:not([src]), dataset src)
howtopronounce.com##img[loading="lazy"][data-src]:style(visibility: visible !important;)
! howtoremove.guide
howtoremove.guide##+js(ss, body.cookies-not-set img[loading="lazy"][data-wpfc-original-src][src$="blank.gif"], dataset wpfcOriginalSrc)
! imginn.com
imginn.com##+js(set-attr, img[src="//assets.imginn.com/img/lazy.jpg"][data-src], src, [data-src])
! insideaiml.com
insideaiml.com##.hideME:style(visibility: visible !important;)
! insideevs.com
insideevs.com##+js(ss, img[loading="lazy"], previousElementSibling dataset srcset, 1)
insideevs.com##.detailed-box .lazyload
! intelliwolf.com
intelliwolf.com##+js(ss, img.ezlazyload[data-ezsrc][src^="data:image"], dataset ezsrc)
! investopedia.com
investopedia.com##+js(ss, div.lazyload[id^="mntl-sc-block-inlinevideo__video"][data-bgset], dataset bgset)
investopedia.com##.katex-mathml:style(visibility: visible !important;)
! https://www.jpopsingles.eu
jpopsingles.eu###mdp-deblocker-js-disabled
! jpost.com
jpost.com##+js(ss, img.lazy[data-original]:not([src]), dataset original)
! kilala.vn
kilala.vn##+js(ss, .swiper-lazy[data-background] img[src$="/img_1x1.png"]:not(.img-fluid), parentElement parentElement dataset background)
kilala.vn##+js(ss, img.img-fluid[data-src], dataset src)
kilala.vn##.js-page-loader
kilala.vn##.opacity0:remove-class(opacity0)
kilala.vn##img.img-fluid:style(display: block !important;)
! kingged.com
kingged.com##img[src]:style(opacity: 1 !important;)
! knowyourmeme.com
knowyourmeme.com##+js(ss, iframe.lazy-iframe[data-src]:not([src]), dataset src)
knowyourmeme.com##+js(ss, img[data-src][src$=".gif"], dataset src)
! kyodonews.net
kyodonews.net##+js(ss, div.pic[data-src], dataset src)
kyodonews.net##+js(ss, img[data-src][src$="thumbnail.png"], dataset src)
kyodonews.net##div.main-five-slider:style(display: block !important;)
kyodonews.net##nav:style(position: absolute !important;)
! lalal.ai
lalal.ai##header#gh-head:style(position: absolute !important;)
! https://www.laptopmag.com/
laptopmag.com##+js(set-attr, img.lazy-image-van[src$="/missing-image.svg"][data-original-mos], src, [data-original-mos])
! leadfeeder.com
leadfeeder.com##+js(ss, img.lazy-image[data-src]:not([src]), dataset src)
! learnubuntu.com
learnubuntu.com##+js(ss, img.lazyload[data-src][src*="/img-placeholder"], dataset src)
learnubuntu.com##+js(set-attr, img.lazyload[data-src][src*="/img-placeholder"], src, [data-src])
learnubuntu.com##img.lazyload[data-src][src]:style(opacity: 1 !important; filter: none !important;)
! https://www.leviathansecurity.com/blog/tunnelvision
leviathansecurity.com##footer, .content-wrapper:style(opacity: 1 !important;)
! linkedin pulse
linkedin.com##.lazy-load, [data-delayed-url], [data-delayed-poster], [data-delayed-background]:style(opacity: 1 !important;)
linkedin.com##+js(set-attr, img[data-delayed-url]:not([src]), src, [data-delayed-url])
! linuxandubuntu.com
linuxandubuntu.com##+js(ss, html[amp] amp-img[src] > i-amphtml-sizer > img.i-amphtml-intrinsic-sizer[src^="data:image"], parentElement parentElement attributes src value)
linuxandubuntu.com##+js(rt, html[amp] amp-img:not(figure amp-img):not(.amp-logo amp-img):not([src$="default-image.png"]), img)
linuxandubuntu.com##+js(rt, html[amp] div.amp-author-image > amp-img[src], img)
linuxandubuntu.com##html[amp] .ultp-block-image amp-img[src]:not([src$="default-image.png"]), html[amp] .ultp-block-image img[src]:not(.i-amphtml-fill-content):style(width: 100% !important; height: auto !important;)
linuxandubuntu.com##html[amp] [rel="bookmark"] > amp-img:not(figure amp-img):not(.amp-logo amp-img):not([src$="default-image.png"]), html[amp] [rel="bookmark"] > img:style(width: 100% !important; height: auto !important;)
linuxandubuntu.com##html[amp] i-amphtml-sizer:not(figure i-amphtml-sizer):not(.amp-logo i-amphtml-sizer)
! linyiru.com
linyiru.com##article, .brand, .site-title:style(opacity: 1 !important;)
linyiru.com##aside, section:style(display: block !important;)
! lithub.com
lithub.com##+js(ss, img.lazy[data-src][src*="lazy"], dataset src)
! livemint.com
livemint.com##+js(ss, img.lozad[data-src][src$="/1x1_img.gif"], dataset src)
livemint.com##section#podcastCarousel > .mainArea:style(display: block !important;)
livemint.com###genie_UserPortfolio
! lnk.to
lnk.to##img.music-service-list__img:style(display: block !important;)
! logicmatters.net
logicmatters.net##+js(ss, img.lazyload[data-src][src^="data:image"], dataset src)
! https://logrhythm.com
logrhythm.com###loader-wrapper
! https://kevdees.com
kevdees.com##.preloader
! macrumors.com
macrumors.com##+js(ss, img.lazyload[data-src][src$="1x1.trans.gif"]:not(article img), dataset src)
macrumors.com##img.lazyload[data-src][src]:not(article img):style(display: block !important;)
! makeuseof.com
makeuseof.com##+js(set-attr, img.lazyload[data-img-url]:not([src]), src, [data-img-url])
! malwaretips.com
malwaretips.com##+js(ss, img.lazyload[data-src][src^="data:image"], dataset src)
! mangabtt.com
mangabtt.com##+js(ss, img[data-src][src^="data:image"], dataset src)
mangabtt.com##.owl-carousel:style(display: block !important;)
! mangapuma.com
mangapuma.com##+js(ss, img.lazy, dataset src)
! mangaread.org
mangaread.org##+js(ss, img.lazyload, dataset src)
mangaread.org##img.lazyload:style(height: auto !important; padding-top: 0px !important;)
! marketwatch.com
marketwatch.com##+js(ss, img.lazyload[data-srcset]:not([src]), dataset srcset)
marketwatch.com##+js(ss, img.lazyload[data-src]:not([data-srcset]):not([src]), dataset src)
! may69.com
may69.com###af-preloader
! meaww.com
meaww.com##+js(ss, img.lazyload[data-src], dataset src)
! techxplore-sites
medicalxpress.com,phys.org,techxplore.com##+js(ss, img[src^="data:image"], dataset src)
! medscape.com
medscape.com##+js(ss, img[data-src][src$="1x1.png"], dataset src)
! memgraph.com
memgraph.com##.code_section, .hero_left, .w-background-video, [class*="_flex"], [class*="_split"], [class*="container"]:style(opacity: 1 !important;)
memgraph.com###top-banner
! microsoftedge.github.io
microsoftedge.github.io##+js(set-attr, img[data-src][src^="data:image"], src, [data-src])
! mirror.co.uk
mirror.co.uk##+js(rt, amp-img, img)
mirror.co.uk##.logo-placeholder
mirror.co.uk##.image:style(height: auto !important; margin: auto !important;)
! mitefcee.org
mitefcee.org##.delay:style(visibility: visible !important;)
! mozilla.org
mozilla.org##+js(ss, img.lazy[data-original-src][src$=".gif"], dataset originalSrc)
! natalie.mu
natalie.mu##+js(ss, img.lazyload[data-src]:not([src]), dataset src)
! myanimelist.net
myanimelist.net##+js(ss, .lazyload[data-bg], dataset bg)
myanimelist.net##+js(set-attr, img.lazyload[data-src]:not([src]), src, [data-src])
myanimelist.net##.lazyload:style(opacity: 1 !important;)
myanimelist.net##img.lazyload[data-src$="/bg_shadow_rect_trans.png"]
! mysmartprice.com
mysmartprice.com##+js(ss, img[data-lazy-src], dataset lazySrc)
mysmartprice.com##img[data-lazy-fallback]:style(opacity: 1 !important;)
! ndtv.com
ndtv.com##+js(ss, img.lazy[data-original]:not([data-src]), dataset original)
ndtv.com##+js(ss, img[data-src][src^="data:image"], dataset src)
! newatlas.com
newatlas.com##+js(ss, img.lazy[data-src]:not([src]), dataset src)
! https://www.newprint.com
newprint.com##+js(rt, amp-img[fallback][src], img)
newprint.com##.land-see-post-item:style(opacity: 1 !important;)
newprint.com##amp-img[fallback][src], img[fallback][src]:style(width: 100% !important; height: auto !important;)
newprint.com##li.ampstart-dropdown-item
! newyorker.com
newyorker.com##[class^="SpanWrapper"]:style(opacity: 1 !important;)
! nhandan.vn
nhandan.vn##+js(ss, img.lazyload[data-src][src^="data:image"], dataset src)
! nilsenreport.ca
nilsenreport.ca##+js(ss, html.no-js img.ezlazyload[data-orig-file][src^="data:image"], dataset origFile)
nilsenreport.ca##+js(ss, html.no-js img.ezlazyload[data-ezsrc]:not([data-orig-file])[src^="data:image"], dataset ezsrc)
nilsenreport.ca##html.no-js img.ezlazyload[data-orig-file][src]:style(position: relative !important;)
nilsenreport.ca##html.no-js div.thumbnail-container::after:style(background: transparent !important;)
! https://nitratine.net/blog/post/auto-py-to-exe/
nitratine.net##+js(set-attr, img.lazyload[src^="data:image"][data-src], src, [data-src])
nitratine.net##.blur-up:style(filter: none !important;)
! https://nordvpn.com/blog/how-to-encrypt-flash-drive/
nordvpn.com##+js(set-attr, html.no-js img.lazyload[src^="data:image"][data-src], src, [data-src])
nordvpn.com##img:is(.lazyload--fade-in.lazyload, .lazyload--fade-in.lazyloading):style(opacity: 1 !important;)
! nowarchaeology.com
nowarchaeology.com##.entry-thumb > .attachment-WRT-post-image
nowarchaeology.com##.wp-block-image > [class^="wp-image"]
! nutsandboltsspeedtraining.com
nutsandboltsspeedtraining.com##+js(ss, img.ezlazyload, dataset ezsrcset, 0)
! nytimes.com
nytimes.com##+js(ss, img[loading="eager"][data-src][src], dataset src)
nytimes.com##img:is([loading="eager"], [loading="lazy"]):style(opacity: 1 !important; filter: none !important;)
nytimes.com##div > a[href="https://www.nytimes.com/section/todayspaper"]:upward(1):style(display: block !important;)
! olympics.com
olympics.com##+js(ss, img.lazyload[src*="/t_lqip/"], previousSibling dataset srcset, 1)
! onlinemathlearning.com
onlinemathlearning.com##+js(set-attr, html.no-js img.ss-lazy[data-src][src^="data:image"], src, [data-src])
! https://www.openculture.com
openculture.com##.native-lazyload-js-fallback
! https://www.optimizesmart.com
optimizesmart.com##figure > img.lazyload[src^="data:image"]
! pcmag.com
pcmag.com##+js(ss, img[data-image-loader][src^="data:image"]:not([data-src]), dataset imageLoader)
pcmag.com##+js(ss, img[data-src][src^="data:image"], dataset src)
pcmag.com##img[data-image-loader][src]:style(margin-bottom: 1.5rem !important;)
! pecoinvestment.com
pecoinvestment.com##+js(ss, img.lazyload[data-src][src^="data:image"], dataset src)
pecoinvestment.com##+js(ss, span.img.lazyload[data-bgsrc], dataset bgsrc)
pecoinvestment.com##img.lazyload[data-src][src], span.img.lazyload[data-bgsrc]:style(opacity: 1 !important;)
! petapixel.com
petapixel.com##.pcp-preloader
petapixel.com##.trending-posts:style(display: block !important;)
! petri.com
petri.com##+js(ss, html.js img.lazyload[data-src][src^="data:image"], dataset src)
petri.com##html.js img.lazyload[data-src][src]:style(opacity: 1 !important;)
petri.com##html.js :is(.featuredImage, figure) > img.lazyload[data-src][src]
! photographyblog.com
photographyblog.com##+js(ss, img.lazyload[data-lazy][src$="1x1-grey.gif"], dataset lazy)
! photoreview.com.au
photoreview.com.au##.vc_grid-item:style(display: block !important;)
! plaintextoffenders.com
plaintextoffenders.com##a.header-image[data-bg-image]:style(opacity: 1 !important;)
! platform.sh
platform.sh##img[loading="lazy"]:style(opacity: 1 !important;)
! https://plo.vn/hlv-troussier-gach-5-cai-ten-chot-danh-sach-cuoi-cung-28-tuyen-thu-post780584.html
plo.vn##+js(set-attr, img.lazyload[data-src][src^="data:image"], src, [data-src])
plo.vn##.zce-content-body img, .zce-content-body video:style(height: auto !important;)
plo.vn##.zce-content-body a:style(display: contents !important; color: #00739f !important;)
! pocket-lint.com
pocket-lint.com##+js(ss, body.js-tldr img.lazyload[data-img-url]:not([src]), dataset imgUrl)
! politico.com
politico.com##+js(ss, img[data-lazy-img][src^="data:image"], dataset lazyImg)
politico.com##+js(ss, img[data-lazy][src$="placeholder.png"], dataset lazy)
politico.com##.cover__cta:style(opacity: 1 !important;)
politico.com##body:style(visibility: visible !important;)
politico.com##img[data-lazy-img][src]:style(height: auto !important; padding-bottom: 0px !important;)
! practical365.com
practical365.com##figure > img[decoding="async"]:style(display: block !important;)
! practical-tips.com
practical-tips.com##+js(set-attr, img.penci-lazy[data-src][src^="data:image"], src, [data-src])
! https://www.pressherald.com
pressherald.com##.mtm-article, .post-content:style(display: block !important;)
pressherald.com##span > img[loading="lazy"][src$="1x1.trans.gif"]
! proton.me
proton.me##img[loading="lazy"]:style(opacity: 1 !important;)
proton.me###gatsby-focus-wrapper > .top-0.fixed:style(position: absolute !important;)
! https://pureinfotech.com
pureinfotech.com##img.jetpack-lazy-image[srcset^="data:image"]
! pythonforfinance.net
pythonforfinance.net##+js(ss, img.penci-lazy[data-src][src^="data:image"], dataset src)
! quantamagazine.org
quantamagazine.org##video:style(opacity: 1 !important;)
! https://quantrimang.com/cong-nghe/thay-doi-background-tren-ps5-201731
quantrimang.com##+js(set-attr, img.lazy[src$="holder.png"][data-src], src, [data-src])
! qz.com
qz.com##+js(ss, iframe[data-src]:not([src]), dataset src)
qz.com##+js(ss, picture > source[data-srcset][srcset^="data:image"], dataset srcset)
qz.com##+js(ss, video[data-poster][poster], dataset poster)
! republic.com
republic.com##.layouts-application__content-container--blurred:remove-class(layouts-application__content-container--blurred)
! https://www.researchgate.net/post/How_to_use_previous_solution_as_initial_value_of_pressure_in_second_study_in_COMSOL
researchgate.net##+js(set-attr, img[data-src][src^="data:image"], src, [data-src])
! restofworld.org
restofworld.org##+js(ss, img[data-src][src], dataset src)
restofworld.org##img[data-src][src]:style(filter: none !important;)
! retroshareteam.wordpress.com
retroshareteam.wordpress.com##img:style(max-width: -moz-available !important; height: auto !important;)
! https://www.rt.com/news/606780-north-korea-icbm-test/
rt.com##img.lazyload
! rte.ie
rte.ie##+js(ss, html.no-js iframe[data-src]:not([src]), dataset src)
rte.ie##.loading-overlay
rte.ie##.carousel > article:style(opacity: 1 !important;)
! https://www.sandvine.com
sandvine.com##html.no-js #smm-header:style(display: block !important;)
sandvine.com##html.no-js .smm-menu-wrapper .smm-mobile-wrapper
sandvine.com##html.no-js body *:style(visibility: visible !important;)
! santafenm.gov
santafenm.gov##header:style(position: absolute !important;)
! saytruyenvip.com
saytruyenvip.com##+js(ss, img.lazyload[data-src], dataset src)
saytruyenvip.com##img.lazyload:style(opacity: 1 !important; height: auto !important;)
! scanftree.com
scanftree.com##html.no-js img:style(display: block !important;)
! schengenvisainfo.com
schengenvisainfo.com##+js(ss, span.entry-thumb.rocket-lazyload[data-bg], dataset bg)
! science.org
science.org##+js(ss, img.lazyload[data-src]:not([src]), dataset src)
! scitechdaily.com
scitechdaily.com##+js(ss, img.ezlazyload, dataset ezsrc, 0)
! screenrant.com
screenrant.com##+js(ss, picture > source[data-srcset]:not([srcset]), dataset srcset)
screenrant.com###article-directory-list-cta:style(position: inherit !important;)
! sdxcentral.com
sdxcentral.com##img.preview:style(filter: unset !important;)
! https://securelist.com/fake-captcha-delivers-lumma-amadey/114312/
securelist.com##img[loading="lazy"]:not(.loaded):not(.loading):style(opacity: 1 !important;)
! sekoia.io
blog.sekoia.io##^#notizia-loading-overlay, .notizia-dark-overlay-full, .notizia-modal
blog.sekoia.io###notizia-loading-overlay, .notizia-dark-overlay-full, .notizia-modal
blog.sekoia.io##.notizia-dark-overlay:style(background-color: black !important;)
! sensereceptornews.com
sensereceptornews.com##img:style(opacity: 1 !important;)
sensereceptornews.com##.inner-content *:style(visibility: visible !important;)
! sfchronicle.com
sfchronicle.com##+js(ss, .deferred img[data-srcset], dataset srcset)
sfchronicle.com##+js(ss, .deferred img[data-src], dataset src)
sfchronicle.com##.deferred img:style(opacity: 1 !important; height: auto !important; position: inherit !important;)
sfchronicle.com##.deferred::after:style(background-image: unset !important;)
! sharpsightlabs.com
sharpsightlabs.com##+js(ss, img.nitro-lazy[nitro-lazy-src][src^="data:image"], attributes nitro-lazy-src value)
sharpsightlabs.com##+js(ss, img.nitro-lazy[nitro-lazy-srcset][src^="data:image"]:not([nitro-lazy-src]), attributes nitro-lazy-srcset value, 1)
sharpsightlabs.com##img.nitro-lazy[nitro-lazy-src][src]:style(display: block !important;)
sharpsightlabs.com##article.post:style(opacity: 1 !important;)
! https://www.shiksha.com/online-courses/articles/gpt-3-point-5-vs-gpt-4-how-do-they-differ/
shiksha.com##+js(set-attr, img[data-original]:not([src]), src, [data-original])
! si.com
si.com##+js(ss, picture > source[data-srcset]:not([srcset]), dataset srcset, 1)
si.com##picture > img:style(visibility: visible !important; opacity: 1 !important;)
si.com##.m-card--media::after:style(background-image: none !important; background-color: transparent !important;)
si.com##.m-card--label, .m-card--label::before, .m-card--label::after:style(background-image: none !important; background-color: transparent !important; visibility: visible !important; height: auto !important;)
si.com##.m-card--metadata, .m-card--metadata::before, .m-card--metadata::after:style(background-image: none !important; background-color: transparent !important; visibility: visible !important; height: auto !important;)
si.com##.m-card--header-text, .m-card--header-text::before, .m-card--header-text::after:style(background-image: none !important; background-color: transparent !important; visibility: visible !important; ; height: auto !important;)
! sifted.eu
sifted.eu##+js(ss, img.lazyload[data-src][src^="data:image"], dataset src)
sifted.eu###header:style(position: absolute !important;)
! siipo.la
siipo.la##+js(ss, picture > source[data-srcset][srcset^="data:image"], dataset srcset)
! simplilearn.com
simplilearn.com##+js(ss, img.lazy, dataset src)
simplilearn.com##img.lazy:style(width: auto !important;)
! sky.com
sky.com##html.no-js .ui-consent-roadblock-body:style(visibility: visible !important;)
! skyheadlines.com
skyheadlines.com##+js(ss, img.lazy[data-src][src^="data:image"], dataset src)
! skysports.com
skysports.com##+js(ss, picture > source[data-srcset][srcset^="data:image"], dataset srcset)
skysports.com##img.sdc-site-pundits__figure-image[loading="lazy"][src^="https"][srcset^="data:image"]:remove-attr(srcset)
! slate.com
slate.com##+js(ss, img.lazyload[data-src]:not([src]), dataset src)
slate.com##img.lazyload[data-src]:style(opacity: 1 !important;)
! smh.com.au
smh.com.au##header ul > li > button[aria-controls="navigation"]:upward(1):style(display: block !important;)
smh.com.au##+js(ss, iframe[data-src]:not([src]), dataset src)
! standard.co.uk
standard.co.uk##+js(rt, amp-img[src], img)
standard.co.uk##.i-amphtml-layout-responsive:style(width: 100% !important; height: 100% !important;)
standard.co.uk##amp-carousel > article:style(display: inline-block !important; margin-right: 10px !important;)
standard.co.uk##i-amphtml-sizer
! statisticalhorizons.com
statisticalhorizons.com##[data-aos="aos-fade-up"]:remove-attr(data-aos)
! https://www.stuff.tv
stuff.tv##.c-ad.c-ad
stuff.tv##+js(ss, img.lazyload[src^="data:image"][data-orig-file], dataset origFile)
stuff.tv##a > span[style] > img
stuff.tv##figure > img.lazyload[src^="data:image"]:not([data-orig-file])
! https://supabase.com
supabase.com##img[class=""][src^="data:image"]
! https://switowski.com/blog/map-vs-list-comprehension/
switowski.com##nav > div[\@click="$store.nav.close()"]
! technologyreview.com
technologyreview.com##.carousel__wrapper:style(opacity: 1 !important;)
technologyreview.com##.image-gallery-slide:style(transform: unset !important;)
! techspot.com
techspot.com##+js(ss, .b-lazy[data-bg]:not(img), dataset bg)
techspot.com##+js(ss, img.b-lazy[data-src][src^="data:image"], dataset src)
techspot.com##img.b-lazy[data-src]:style(opacity: 1 !important;)
! techcrunch.com
techcrunch.com##.content:style(margin-top: 50px !important;)
! techtarget.com
techtarget.com##+js(ss, html.no-js img.lazy[data-srcset]:not([src]), dataset srcset, 1)
! tedium.co
tedium.co##+js(ss, html.no-js img.lazyload[data-src]:not([src]), dataset src)
! the74million.org
the74million.org###frontpage-repeat:style(opacity: 1 !important; transform: inherit !important;)
the74million.org##li[data-id]:style(opacity: 1 !important;)
! https://www.theaidream.com/post/loss-functions-in-neural-networks
theaidream.com##[data-animate-blur] img:style(filter: none !important;)
! https://www.theatlantic.com
theatlantic.com##li > img.lazyload[data-srcset]:not([src])
! theconversation.com
theconversation.com##+js(ss, img.lazyload[data-src], dataset src)
theconversation.com##img.lazyload[data-src]:style(opacity: 1 !important;)
! https://thefintechtimes.com
thefintechtimes.com##img[src^="data:image"]
! thegeekpage.com
thegeekpage.com##+js(set-attr, img[src$="/blank.gif"][data-wpfc-original-src], src, [data-wpfc-original-src])
! thehackernews.com
thehackernews.com##+js(ss, img[data-src][src^="data:image"], dataset src)
thehackernews.com##img[loading="lazy"]:style(height: auto !important;)
! thestreet.com
thestreet.com##+js(ss, picture > source[data-srcset]:not([srcset]), dataset srcset, 1)
thestreet.com##.is-waiting-to-load > img:style(visibility: visible !important;)
! thewindowsclub.com
thewindowsclub.com##+js(ss, body.no-js img.ezlazyload[data-ezsrc][src^="data:image"], dataset ezsrc)
! tienphong.vn
tienphong.vn##+js(set-attr, video.cms-video[data-video-src]:not([src]), src, [data-video-src])
! timesofindia.com
timesofindia.com##+js(ss, html.no-js img[data-src][placeholdersrc][src], dataset src)
! https://tongfamily.com
tongfamily.com###preloader-background
tongfamily.com##img.lazyload[src^="data:image"]
! tools2study.com
tools2study.com##+js(ss, img.ezlazyload[data-ezsrc][src^="data:image"], dataset ezsrc)
! tumblr.com
tumblr.com##+js(set-attr, 'img[srcset]:not([src]):is([loading="lazy"], [loading="eager"])', src, [srcset])
tumblr.com##img[srcset]:is([loading="lazy"], [loading="eager"]):style(visibility: visible !important;)
! https://webdesign.tutsplus.com/
tutsplus.com##nav:style(position: absolute !important;)
! tweaktown.com
tweaktown.com##+js(ss, img.lazyload[data-src]:not([src]), dataset src)
! https://www.tweeteraser.com/resources/view-twitter-without-account-exploring-without-sign-up/
tweeteraser.com##+js(set-attr, img.lazy[data-src][src^="data:image"], src, [data-src])
! urbandictionary.com
urbandictionary.com###ud-root > div:style(padding-top: 56px !important;)
urbandictionary.com##button > svg:style(display: block !important;)
! usatoday.com
usatoday.com##+js(ss, html.gnt__njs img.lazyload.blur-up[data-src][src], dataset src)
usatoday.com##+js(ss, html.gnt__njs img[data-g-r="lazy"][data-gl-bs]:not([src]), dataset glBs)
usatoday.com##+js(ss, html.gnt__njs img[data-g-r^="lazy"]:not([data-src]):not([data-gl-bs]), dataset glSrcset, 1)
usatoday.com##img.blur-up:style(filter: none !important;)
! uservoice
uservoice.com##wp-loading:style(visibility: visible !important;)
! usnews.com
usnews.com##[class*="PhotoGalleryEmbed"]:style(opacity: 1 !important;)
usnews.com###main-column .border-top:style(visibility: visible !important;)
! https://vietnamnet.vn
vietnamnet.vn##+js(set-attr, img.lazy[data-original][src^="data:image"], src, [data-original])
! https://www.vietnamplus.vn/ba-kamala-harris-dan-truoc-ong-donald-trump-4-diem-trong-so-cac-cu-tri-tiem-nang-post982575.amp
!#if env_mobile
||vietnamplus.vn^$doc,replace=/amp-img/img/g
!#else
||vietnamplus.vn/*.amp^$doc,uritransform=/\.amp\b/.vnp/
vietnamplus.vn##+js(set-cookie, isDesktop, 1, , reload, 1)
!#endif
! https://www.visual-design.net/post/three-improvements-to-future-proof-your-machine-learning-project
visual-design.net##[data-animate-blur] img[data-pin-media]:style(filter: unset !important;)
visual-design.net##+js(set-attr, [data-animate-blur] img[data-pin-media], src, [data-pin-media])
! https://vnexpress.net/thanh-tri-cua-pho-tuong-ba-harris-bau-cho-ong-trump-4813506.html
vnexpress.net##+js(set-attr, img.lazy[src^="data:image"][data-src], src, [data-src])
! voz.vn
voz.vn##.has-no-js .lazyload:not(img[src^="data:image"]):style(display: block !important;)
voz.vn##.has-no-js .js-expandContent:style(max-height: fit-content !important;)
! vtc.vn
vtc.vn##+js(ss, b.video-element[data-poster], dataset poster)
vtc.vn##+js(ss, img[data-src][src^="data:image"], dataset src)
vtc.vn##.swiper-slide > article:style(height: auto !important;)
! https://vtcnews.vn/sang-lap-startup-ngoi-code-giua-dam-cuoi-cua-minh-dan-mang-mia-mai-tham-te-ar901223.html
vtcnews.vn##+js(set-attr, img.lazy[data-src][src^="data:image"], src, [data-src])
! wallpaper.com
wallpaper.com##+js(ss, img.lazy-image-van[data-original-mos][src$="missing-image.svg"], dataset originalMos)
! washingtonpost.com
washingtonpost.com##figure > div[style*="blur"]:style(filter: none !important;)
! wbay.com
wbay.com##.w-100[style]
! https://winbuzzer.com
winbuzzer.com##img[src^="data:image"]
! https://www.wired.com
wired.*##span.responsive-asset:style(opacity: 1 !important;)
! wpengine.com
wpengine.com##header:style(position: absolute !important;)
! wpstackable.com
wpstackable.com##+js(ss, img.nitro-lazy[nitro-lazy-src][src^="data:image"], attributes nitro-lazy-src value)
! xda-developers.com
xda-developers.com##+js(ss, picture > source[data-srcset]:not([srcset]), dataset srcset)
! xemtruyen.info
xemtruyen.info##+js(ss, img.lazy[data-src], dataset src)
xemtruyen.info##img.lazy:style(height: auto !important; padding-top: 0px !important;)
! yahoo.com
yahoo.com##+js(ss, img.caas-lazy[data-src]:not([src]), dataset src)
yahoo.com##+js(ss, img.wafer-img[data-wf-src][src$="spaceball.gif"], dataset wfSrc)
yahoo.com##div.caas-img-container::after:style(background: transparent !important;)
yahoo.com##img.caas-lazy[data-src]:style(opacity: 1 !important; animation: none !important;)
! zingnews.vn
zingnews.vn##+js(ss, img[src^="data:image"], dataset src)
! znews.vn
znews.vn##+js(set-attr, img[src^="data:image"][data-src], src, [data-src])
! ====================================== Specific sites-fix ======================================