Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- var url = document.location.toString();
- var html = '<dt>Tools</dt>';
- if(url.match('forum-replies.cfm')){
- var thread_id = url.split('t=')[1];
- thread_id = thread_id.split('&')[0];
- var user_id = $('.userinfo dd:first').text().split('#')[1];
- GM_xmlhttpRequest({
- method: req.method || 'GET',
- url: 'http://forums.whirlpool.net.au/user/'+ user_id +'',
- headers: { 'User-Agent': navigator.userAgent, 'Accept': req.accept || 'text/xml' },
- onload: function(response) {
- var posts = $('td:contains("Post count")').next('td').text();
- $('.userinfo').after('<dl>' + html + '</dl>');
- var user_name = $('.userinfo dt').text();
- html += '<dd>'+ posts +'</dd> ';
- $('.userinfo').after('<dl>' + html + '</dl>');
- },
- })
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment