I made a script to change all references of "covid" or "coronavirus" to Chinavirus. Now ever headline and article with that in there makes me SMILE.
Here's the script. You can load it thru Greasemonkey or any other browser extension for user scripts.
document.body.innerHTML = document.body.innerHTML.replace(/C[\w]+-19/g, "Chinavirus");
document.body.innerHTML = document.body.innerHTML.replace(/(Covid|covid)/g, "Chinavirus");
document.body.innerHTML = document.body.innerHTML.replace(/(Coronavirus|CoronaVirus|coronavirus|Sars-CoV-2)/g, "Chinavirus");
I like WuFlu.