您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Unaccepted hits will have a light red background.
// ==UserScript== // @name Mturk Hit Not Accepted // @version 3.0 // @description Unaccepted hits will have a light red background. // @author Cristo // @include * // @copyright 2012+, You // @namespace https://gf.qytechs.cn/users/1973 // ==/UserScript== //Update to make unaccepted hits more obvious without alert if(window.location != window.parent.location === true){ if(window.location.toString().indexOf("ASSIGNMENT_ID_NOT_AVAILABLE") != -1){ var bod = document.getElementsByTagName("body")[0]; var prediv = document.createElement("div"); bod.appendChild(prediv); prediv.style.pointerEvents = "none"; prediv.style.position = "fixed"; prediv.style.zIndex="999"; prediv.style.top = "0%"; prediv.style.left = "0%"; prediv.style.opacity = "0.5"; prediv.style.width = "100%"; prediv.style.height = "100%"; prediv.style.backgroundColor = "rgb(245, 198, 198)"; } } else if (window.location != window.parent.location === false) { if (document.getElementsByName("hitForm")[1].getAttribute("action") == "/mturk/accept") { if(document.getElementById("hit-wrapper")){ var div = document.getElementById("hit-wrapper"); var prediv = document.createElement("div"); div.appendChild(prediv); prediv.style.pointerEvents = "none"; prediv.style.position = "absolute"; prediv.style.zIndex="999"; prediv.style.top = div.offsetTop; prediv.style.left = div.offsetLeft; prediv.style.opacity = "0.5"; prediv.style.width = div.offsetWidth; prediv.style.height = div.offsetHeight; prediv.style.backgroundColor = "rgb(245, 198, 198)"; }}}
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址