Thanks for the database, in my "spare" time, I threw together a JavaScript library that will scan for Redemption cards and also inject the ruletext next to each card. As a test, I used it on this forum (full source here: http://github.com/relipse/RedemptionHelper.js )
To try it out, go to chrome console and do below:
loadJs = function(s) {
var script = document.createElement("script");
// This script has a callback function that will run when the script has
// finished loading.
script.src = s;
script.type = "text/javascript";
document.getElementsByTagName("head")[0].appendChild(script);
}
loadJs('//ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js');
loadJs('http://raw.github.com/relipse/RedemptionHelper.js/master/RedemptionHelper.js');
Now wait a few seconds, then you can do below (replacing #msg_**** with a jquery tag filter)
RedemptionHelper.cards.jQboldCards('#msg_514142');
RedemptionHelper.cards.jQinsertCardInfo();
$('.redempcardinfo').css('font-size','9px').css('color','red');
And you will see something like this:
feel free to fork it!
Oh and change #msg_514142 to whatever message has a bunch of redemption cards, and give me some feedback too!