Skip to content

Instantly share code, notes, and snippets.

@linktohack
Last active August 29, 2015 14:17
Show Gist options
  • Save linktohack/06959c2fc5de8eb0a206 to your computer and use it in GitHub Desktop.
Save linktohack/06959c2fc5de8eb0a206 to your computer and use it in GitHub Desktop.
filter link to download
console.log((function (match) {
a = document.querySelectorAll('a');
matched = [].filter.call(a, function (e) { return e.innerText.match(match); });
link = matched.map(function (e) { return window.location.href + e.getAttribute('href'); });
return link.join("\n");
})(/Horri/i));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment