nanoCaptcha Auto hCaptcha Solver

play nano sitesinden captha sonrasi otomatik tiklama

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

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

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

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

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

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

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

Advertisement:

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

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

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

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

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

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

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

Advertisement:

このスクリプトの質問や評価の投稿はこちら通報はこちらへお寄せください
// ==UserScript==
// @name         nanoCaptcha Auto hCaptcha Solver
// @namespace    [email protected]
// @version      1.0.0
// @description  play nano sitesinden captha sonrasi otomatik tiklama
// @author       ekaraman [email protected]
// @match        https://playnano.online/watch-and-learn/nano/captcha*
// @match        https://playnano.online/watch-and-learn/nano*
// @grant        yes
// ==/UserScript==

window.onload=function(){
  setInterval(autoClick,5000);
}
function autoClick(){
  if(document.getElementsByClassName("button btn-primary watch-next-btn").length>0){
  document.getElementsByClassName("button btn-primary watch-next-btn")[0].click();
}
}

    setInterval(function() {
        // Click on claim when hCaptcha is solved.
        if (document.querySelector(".h-captcha > iframe").getAttribute("data-hcaptcha-response").length > 0) {
            document.getElementsByClassName("button")[0].click();
        }
    }, 5000);