I whipped together a little script that opens up all new posts in new tabs, when one opens the "view new posts" page:
if (document.getElementById('navstrip').innerHTML.match('Posts since your last visit') != null) {
var linkTags = document.getElementsByTagName('a');
for (var i = linkTags.length-1; i >=0; i--) {
if (linkTags[i].href.match(/http:\/\/www.cartotalk.com\/index.php\?showtopic=\d+\&view=getnewpost/) != null) window.open(linkTags[i].href);
}
}


Sign In
Create Account

Sweden
Back to top








