Created
September 3, 2014 21:09
-
-
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
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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