Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // ==UserScript==
- // @id elegopen
- // @name elegopen
- // @version 1.0
- // @namespace
- // @author EyEBURNeR
- // @description open ga update helper
- // @include http://steamcommunity.com/groups/EverybodyLEG/discussions/0/864957817400238292/*
- // @run-at document-end
- // ==/UserScript==
- var $ = unsafeWindow.jQuery;
- $('.grouppage_content_area').after($('<textarea/>')
- .attr('id','eleg').attr('style','width:100%;height:400px;'))
- .after($('<button/>').text('parse').click(function(){$('.commentthread_comment').each(parseComment);}))
- ;
- function parseComment(){
- $('.bb_link:contains(giveaway)', this).each(parseLink);
- }
- function parseLink(){
- var giver = $.trim($(this).parents('.commentthread_comment:first').find('.commentthread_comment_author a:first').text());
- $('#eleg').val($('#eleg').val()+'[*] '+$(this).attr('href')+' - '+giver+'\n');
- }
Advertisement
Add Comment
Please, Sign In to add comment