如何制作Greasemonkey单击具有特定文本的链接?

时间:2011-02-18 01:20:55

标签: javascript hyperlink click greasemonkey

好吧基本上我想点击一个更改但始终具有相同文本名称的链接。 下面是代码可能是

的示例
<a href="unlock.php?confirm=MD5hashere">Click Here</a>

1 个答案:

答案 0 :(得分:12)

这是一个启动脚本。请注意,如果您使用的是Chrome,它会使用jQuery并假设您正在运行Firefox或使用Tampermonkey。

// ==UserScript==
// @name     _YOUR_SCRIPT_NAME
// @include  http://YOUR_SERVER.COM/YOUR_PATH/*
// @require  http://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js
// @grant    GM_addStyle
// ==/UserScript==
/*- The @grant directive is needed to work around a design change
    introduced in GM 1.0.   It restores the sandbox.
*/

//--- Note that the contains() text is case-sensitive.
var TargetLink = $("a:contains('Click Here')")

if (TargetLink.length)
    window.location.href = TargetLink[0].href


另见: