Comment on Elder scrolls
namingthingsiseasy@programming.dev 7 months agoIn case you weren’t aware, there are extensions that you can use to restore the older (better) UIs. Here are a couple:
There are probably some for other browsers as well. I don’t use them though. I instead wrote myself a tampermonkey script to change it:
if (!window.location.search.contains('useskin')) { var new_url = window.location.protocol + "//" + window.location.hostname + window.location.pathname; if (window.location.search == "") { new_url = new_url + "?useskin=monobook"; } else { new_url = new_url + window.location.search + "&useskin=monobook"; } new_url = new_url + window.location.hash; window.location.replace(new_url); }
You can compare the available wikipedia styles on this page to see which one you like best: en.wikipedia.org/wiki/Wikipedia:Skin?useskin=mono…
starman2112@sh.itjust.works 7 months ago
Yeah, and I do that, I just don’t think I should have to. I should be able to open the website on a fresh install and not get nauseous using it.