Skip to content

Instantly share code, notes, and snippets.

@micahbf
Created September 3, 2014 21:09
Show Gist options
  • Save micahbf/742e72694bd0088d8d0b to your computer and use it in GitHub Desktop.
Save micahbf/742e72694bd0088d8d0b to your computer and use it in GitHub Desktop.
A little bookmarklet to remove the annoying attribute lists from RubyProf call stacks
javascript: (function () { var links = document.getElementsByTagName("a"); for(var i = 0; i < links.length; i++) { var link = links[i]; link.innerText = link.innerText.replace(/\([^)]*\)>?#/, "#") }; }());
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment