🎉 欢迎访问GreasyFork.Org 镜像站!本镜像站由公众号【爱吃馍】搭建,用于分享脚本。联系邮箱📮

Greasy fork 爱吃馍镜像

Captcha Clear

Unleashes Your Sharingan on Worker Captchas.

スクリプトをインストールするには、Tampermonkey, GreasemonkeyViolentmonkey のような拡張機能のインストールが必要です。

You will need to install an extension such as Tampermonkey to install this script.

スクリプトをインストールするには、TampermonkeyViolentmonkey のような拡張機能のインストールが必要です。

スクリプトをインストールするには、TampermonkeyUserscripts のような拡張機能のインストールが必要です。

このスクリプトをインストールするには、Tampermonkeyなどの拡張機能をインストールする必要があります。

このスクリプトをインストールするには、ユーザースクリプト管理ツールの拡張機能をインストールする必要があります。

(ユーザースクリプト管理ツールは設定済みなのでインストール!)

🚀 安装遇到问题?关注公众号获取帮助

公众号二维码

扫码关注【爱吃馍】

回复【脚本】获取最新教程和防失联地址

このスタイルをインストールするには、Stylusなどの拡張機能をインストールする必要があります。

このスタイルをインストールするには、Stylus などの拡張機能をインストールする必要があります。

このスタイルをインストールするには、Stylus tなどの拡張機能をインストールする必要があります。

このスタイルをインストールするには、ユーザースタイル管理用の拡張機能をインストールする必要があります。

このスタイルをインストールするには、ユーザースタイル管理用の拡張機能をインストールする必要があります。

このスタイルをインストールするには、ユーザースタイル管理用の拡張機能をインストールする必要があります。

(ユーザースタイル管理ツールは設定済みなのでインストール!)

🚀 安装遇到问题?关注公众号获取帮助

公众号二维码

扫码关注【爱吃馍】

回复【脚本】获取最新教程和防失联地址

このスクリプトの質問や評価の投稿はこちら通報はこちらへお寄せください
// ==UserScript==
// @name         Captcha Clear
// @version      1.1
// @description  Unleashes Your Sharingan on Worker Captchas.
// @author       Eisenpower
// @namespace    Uchiha Clan
// @icon         https://i.imgur.com/M0jWVYS.png
// @include      *mturk*
// @include      *google.com/evaluation/endor/*
// @grant        GM_addStyle
// @require      https://code.jquery.com/jquery-latest.min.js
// ==/UserScript==

// Put your HIT's group ID here.
// Default is Crowdsurf Support (https://worker.mturk.com/projects/3K3X4GGOSLN9WHITSDB41LMDI6SMCK/tasks/)
var captcha_hit_group_id = '3K3X4GGOSLN9WHITSDB41LMDI6SMCK';

// Forces quick captcha load.
GM_addStyle("#javascriptDependentFunctionality { display: block !important; }");

if ($("p:contains(stocks will go up or down)").length) return;

var workerCaptcha = document.getElementById('captchaInput');

// Opens the HIT window.
document.onkeydown = function(e){
    if (e.keyCode === 109 || e.keyCode === 189){ //"Numpad(Minus)- and Keyboard(Dash)-" is the default. Go to "http://keycode.info/" to get the keycode for your preffered key.
        var worker_window = window.open(`https://worker.mturk.com/projects/${captcha_hit_group_id}/tasks/`, `workerCaptchaClear`, `width=700, height=400, top=200, left=360, statusbar=no`);

        // Check pop up status
        try {
            worker_window.focus();
        }
        catch (e) {
            alert('Captcha Clear pop-up blocked! Please add this site to your exception list.');
        }
    }
};

if (window.name == "workerCaptchaClear") WORKER();

function WORKER () {
    // Removes the Worker iframe
    var frame = document.querySelectorAll('.row.m-b-sm');
    for (i = 0; i < frame.length; i ++) {
        frame[i].remove();
    }

    // Returns the HIT
    var return_button = $('button.btn.btn-secondary')[0];
    if (return_button.textContent == 'Return' && window.location.href.indexOf(captcha_hit_group_id) != -1) {
        return_button.click();
    }

    // Closes the window if no Captcha.
    else if (!workerCaptcha) {
        window.close();
    }
}