5 ms·
It's the scanline effect, here's three lines of JS to disable it from the developer console s=document.createElement('style'); s.textContent='body::aft
by mediumdeviation 11mo ago
It's the scanline effect, here's three lines of JS to disable it from the developer console
s=document.createElement('style');
s.textContent='body::after{display: none !important}';
document.body.appendChild(s)