Created
February 24, 2011 21:33
-
-
Save sgraber/842930 to your computer and use it in GitHub Desktop.
Reddit Bookmarklet to Add URLs to Links in Pages Before Printing
This file contains 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
// Reddit Bookmarklet to Add URLs to Links in Pages Before Printing | |
// Add to your bookmark bar and click on it on any Reddit page and hyperlinks will have their | |
// URLs added right below the link. Nice for printing! | |
javascript:var x=$(".content").find("div.md a").each(function(){var href= (this).attr("href");$(this).after("<br \/>"+href);}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment