PTC Surf

Automatically surfs PTC ads from supported faucet websites

目前为 2023-02-26 提交的版本。查看 最新版本

// ==UserScript==
// @name         PTC Surf
// @namespace    VengeanceXBT
// @version      1.0
// @description  Automatically surfs PTC ads from supported faucet websites
// @author       stealtosvra
// @match        https://contentos.one/*
// @match        https://nobitafc.com/*
// @match        https://faucet4u.com/*
// @match        https://claimro.com/*
// @match        https://buxcoin.io/*
// @match        https://bits.re/*
// @match        https://claimcash.cc/*
// @match        https://ziifaucet.com/*
// @match        https://hatecoin.me/*
// @icon         https://ziifaucet.com/assets/images/updatedfavicon.ico
// @grant        GM_xmlhttpRequest
// @grant        GM_setValue
// @grant        GM_getValue
// @license MIT
// ==/UserScript==

(function() {
  'use strict';

  setInterval(function() {
              function isCaptchaChecked() {
              return grecaptcha && grecaptcha.getResponse().length !== 0;}

              if (isCaptchaChecked()) {
                     document.getElementById('verify').click();}}, 5000);

  function clickButton(selector, delay) {
    setTimeout(() => {
      try {
        const button = document.querySelector(selector);
        if (button) {
          button.click();
        }
      } catch (err) {
        console.error(err);
      }
    }, delay);
  }

document.querySelector("button.btn.btn-primary.btn-block").click();

})();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址