Hacker News new | ask | show | jobs
by mediumdeviation 227 days 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)