Comment by dormento
22 days ago
Ironically, this page is very slow on my laptop, not because of loading too much stuff, but due to the css effects.
Running this on the dev console makes it snappy again:
let allElements = document.querySelectorAll('\*');
allElements.forEach(element => {
element.style.filter = 'none';
element.style.backdropFilter = 'none';
});
No comments yet
Contribute on Hacker News ↗