您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Makes Money
// ==UserScript== // @name Noblis script // @namespace https://greasyfork.org/users/144229 // @version 1.0 // @description Makes Money // @author MasterNyborg // @icon http://i.imgur.com/wS1IQwd.jpg // @include *amazonaws* // @require http://code.jquery.com/jquery-latest.min.js // ==/UserScript== $(document).ready(function() { if (!$('p:contains(For this task, click once to start drawing a bounding box around each head for which you can see part of the face.)').eq(0)) return; $('#instructions_subject_review_noname').toggle(); $(document).keyup(function(event){ if (event.which == 49){ $("button[id='nomistakesbutton']:first").click(); }else if (event.which == 50){ $("button[id='babybutton']:first").click(); }else if (event.which == 51){ $("button[id='junkbutton']:first").click(); }else if (event.which == 52){ $("button[id='nextbutton']:first").click(); } }); });