Skip to content

Instantly share code, notes, and snippets.

@kemayo
Last active December 3, 2015 04:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kemayo/5f0aa4d2e430fbbe03de to your computer and use it in GitHub Desktop.
Save kemayo/5f0aa4d2e430fbbe03de to your computer and use it in GitHub Desktop.
// ==UserScript==
// @name Xenforo invisitext
// @namespace http://davidlynch.org/
// @version 0.1
// @description Make some invisible text a little more visible
// @author David Lynch
// @match https://forums.sufficientvelocity.com/*
// @match https://forums.spacebattles.com/*
// @match https://forums.questionablequesting.com/*
// @match https://xenforo.com/community/*
// @grant GM_addStyle
// ==/UserScript==
/* jshint -W097 */
'use strict';
GM_addStyle('span[style*="Transparent"], span[style*="transparent"], span[style*="TRANSPARENT"] { text-decoration: underline dotted; text-decoration-color: inherit; background: #000000; }');
GM_addStyle('span[style*="Transparent"]:hover, span[style*="transparent"]:hover, span[style*="TRANSPARENT"]:hover { color: #99CC00 !important; }');
@kemayo
Copy link
Author

kemayo commented Dec 3, 2015

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment