这段代码在firefox上工作得很好,但没有在google chrome上工作 idk什么是错的 我曾试图使用不安全的窗口。$但它也不起作用
// ==UserScript==
// @name Torax New
// @namespace ns-recaptcha
// @include http://*.outwar.com/joinraid.php?*
// @include http://*.outwar.com/formraid.php?*
// @include http://demo.codeforgeek.com/google-captcha/
// @version 1
// @grant none
// Main page:
window.addEventListener("message", receiveMessage, false);
function receiveMessage(event)
{
if(event.data == 'submitForm'){
var button = $("form input[type='submit']"); // submit form
button.click();
}
}
// ==/UserScript==