Skip to content

Instantly share code, notes, and snippets.

@StolenThunda
Created January 1, 2020 23:18
Show Gist options
  • Save StolenThunda/1eaad48e67e2d57ea03b29f2cab3f79a to your computer and use it in GitHub Desktop.
Save StolenThunda/1eaad48e67e2d57ea03b29f2cab3f79a to your computer and use it in GitHub Desktop.
var jqry=document.createElement('script');
jqry.src="https://code.jquery.com/jquery-3.3.1.min.js";
document.getElementsByTagName('head')[0].appendChild(jqry);
list=[];
$('.sm-scorename a').each(function(){
list.push(this.text + '\t' + $(this).parents('.sm-score').data('score') );
});
newList = list.reverse();
list = newList.join('\n');
document.body.focus();
document.write(newList.join('<br />'));
copy(list);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment