Xenforo Invisitext69

Make invisible text more visible.

// ==UserScript==
// @name         Xenforo Invisitext69
// @version      2024-03-25
// @description  Make invisible text more visible.
// @namespace    https://greasyfork.org/users/1267336
// @author       ProtagNeptune
// @match        https://xenforo.com/community/*
// @match        https://spacebattles.com/*
// @match        https://*.spacebattles.com/*
// @match        https://sufficientvelocity.com/*
// @match        https://*.sufficientvelocity.com/*
// @match        https://questionablequesting.com/*
// @match        https://*.questionablequesting.com/*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=xenforo.com
// @license      MIT
// @grant        GM_addStyle
// ==/UserScript==

// Apply styles to make invisible text more visible
GM_addStyle('span[style*="Transparent"], span[style*="transparent"], span[style*="TRANSPARENT"] { border: 1px dotted #99CC00; background: #000000; }');
GM_addStyle('span[style*="Transparent"]:hover, span[style*="transparent"]:hover, span[style*="TRANSPARENT"]:hover { color: #99CC00 !important; }');