Quickly get copyable list of links from Google about a site

Type into Google: 

link:https://www.startnet.co.uk

this will list all the links from startnet.co.uk

Save the page as "page.html"

edit and paste this at the end, then redisplay in your web browser.

<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>

<script>
$('span.st,.s').remove();
$('h3').css('overflow','visible');
$('h3 a').each(function(e) {
var t=$(this).attr('href');
$(this).text(t);
});
</script>

Done

Leave a Reply