My goal is to open approximately 25 hyperlinks from a single page.
All of these hyperlinks include the text Free Win
.
I am looking for a solution that will open each individual link in a new tab within the browser. I have written a Greasemonkey script, but it seems to only open the first hyperlink.
var TargetLink = $("a:contains('Free Win')")
if (TargetLink.length)
window.location.href = TargetLink[0].href