Skip to content

Instantly share code, notes, and snippets.

@mindbreaker
Last active July 20, 2017 12:18
Show Gist options
  • Save mindbreaker/cf29c817c5053c6dfe463674254860c0 to your computer and use it in GitHub Desktop.
Save mindbreaker/cf29c817c5053c6dfe463674254860c0 to your computer and use it in GitHub Desktop.
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")})}();
$("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");
});
@mindbreaker
Copy link
Author

mindbreaker commented Mar 29, 2017

Copy URLs from OnPage.org Zoom into a textarea.

You can also drag the OnPage Zoom URL Extractor bookmaklet into your browser.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment