On 29.08.2014 19:46, TB wrote:
A site I read has recently added annoying thread title prefixes. I tried like hell to figure out how to make a Greasemonkey script work. I really havent any programming skill what so ever and it is an epic fail.

The site is here:

http://forums.arcade-museum.com/forumdisplay.php?f=9

Assuming you want to remove the prefix:

// ==UserScript==
// @name        arcade-museum
// @namespace   http://forums.arcade-museum.com/#noprefix
// @description Remove prefixes from http://forums.arcade-museum.com/
// @include     http://forums.arcade-museum.com/forumdisplay.php*
// @require http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js
// @version     1
// @grant       none
// ==/UserScript==

this.$ = this.jQuery = jQuery.noConflict(true);
jQuery("td.alt1 > div span[style='color: red'] > b").remove();

--
Klaus Johannes Rusch
[email protected]
http://klausrusch.atmedia.net/

--
You received this message because you are subscribed to the Google Groups 
"greasemonkey-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/greasemonkey-users.
For more options, visit https://groups.google.com/d/optout.

Reply via email to