// ==/UserScript==
//--- Note that the contains() text is case-sensitive.
var TargetLink = $("a:contains('We love potatoes')")
if (TargetLink && TargetLink.length)
window.location.href = TargetLink[0].href
我想让它找到的链接在 chrome 的新选项卡中打开。这对某些人来说可能很明显,但我一生都无法弄清楚,有人可以帮助我吗?