Testing...
I'm testing something here. I'll post back when I verify it's working. You may go about your business. Move along.
EDIT: I did it! I was sick of seeing Trump and Biden's mugs on the homepage of this site, so I wrote some code to hide them. I'm using this wonderful browser extension: https://chrome.google.com/webstore/detail/user-javascript-and-css/nbhcbdghjpllgmfilhnhkllmkecfmpld?hl=en
Here's the JavaScript:
const hidden_titles = ["Donald Trump", "Joe Biden"];
const titles = document.querySelectorAll(".trending-metadata-title");
titles.forEach(
title => {
const title_text = title.textContent.trim();
if (hidden_titles.includes(title_text)) {
title.closest('li').style.display = 'none';
}
}
);