- Joined
- Sep 14, 2021
- Messages
- 3,848
- Reaction score
- 5,866
I made a tampermonkey script to fix the black message background, was really bugging me. Seriously doubt anyone will bother to use it, but if you install the tampermonkey chrome extension (not available on mobile devices unfortunately) you can add the script below. If people are interested I can extend it to fix other formatting issues as well although sherdogs IT department will presumably start fixing things at some point.
Tampermonkey extension: https://chromewebstore.google.com/d...mkfjojejmpbldmpobfkfo?utm_source=ext_app_menu
script to fix black message background:
// ==UserScript==
// @name New Userscript
// @namespace http://tampermonkey.net/
// @version 2025-01-15
// @description try to take over the world!
// @Author You
// @match https://forums.sherdog.com/*
// @icon data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==
// @grant none
// ==/UserScript==
(function() {
'use strict';
var styles = `
.message-body {
background: unset !important;
}
.bbWrapper {
background: unset !important;
}
var styleSheet = document.createElement("style")
styleSheet.textContent = styles
document.head.appendChild(styleSheet)
console.log('loaded tampermonkey script!!');
})();
Dude, just PM one of these mods and have them Venmo you some cash to fix this nonsense. Seems like you know what you're doing!