Square Avatar Script

Users who are viewing this thread

Hey, I was bored, made a script because square avatars > round avatars.

You can run the script manually or through your favourite plugin on pretty much every browser except IE. But I recommend GreaseMonkey for FF and TamperMonkey for Chrome.

Screen captures

JavaScript:
// ==UserScript==
// @name    SquareAvatar
// @version    3
// @grant    none
// @match    https://forums.taleworlds.com/*
// ==/UserScript==
window.onload = () => Object.values(document.getElementsByClassName("avatar")).forEach(avatar => avatar.style.borderRadius = "0");
 
Last edited:
Back
Top Bottom