Skip to content

Instantly share code, notes, and snippets.

@roSievers
Last active August 29, 2015 14:06
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 roSievers/e07535285f88ed94eab1 to your computer and use it in GitHub Desktop.
Save roSievers/e07535285f88ed94eab1 to your computer and use it in GitHub Desktop.
UserScript: Removs the member_titles on the wildfiregames forums
// ==UserScript==
// @id MemberTitleRemoverWildfiregames
// @name Member Title Remover (Wildfiregames)
// @namespace http://www.diasp.de/u/rosievers
// @description Removs the member_titles on the wildfiregames forums
// @author Rolf Sievers
// @include http://www.wildfiregames.com/forum/*
// @version 1
// @grant none
// @licence http://creativecommons.org/publicdomain/zero/1.0/
// ==/UserScript==
var titles = document.getElementsByClassName("member_title");
while (titles.length > 0) {
titles[0].parentElement.removeChild(titles[0]);
}
@roSievers
Copy link
Author

Known Bug: When commenting yourself, your new comment still carries your status. Fixing this is not trivial as it would require a trigger hooked to the AJAX mechanism that inserts your new post. With my current knowledge of userscripts and javascript this is not feasible.

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