Skip to content

Instantly share code, notes, and snippets.

View dannylinden's full-sized avatar
🚀
It's time to build awesome Software.

Danny Linden dannylinden

🚀
It's time to build awesome Software.
View GitHub Profile
@mindbreaker
mindbreaker / onpage-copy-urls-bookmarklet.js
Last active July 20, 2017 12:18
Copy URLs from Ryte.com (formerly OnPage.org)
javascript:void function(){$("table").prepend("<textarea id='copyurls' cols='100' rows='20' style='height:auto; max-width: none'></textarea>"),$("table tbody tr").each(function(){$("textarea#copyurls").append($(this).data("url")+"\n")})}();