Greasy Fork

Greasy Fork is available in English.

PTC Surf : Vie Faucet Script Websites

Automatically views all PTC ads and Rotate websites

当前为 2023-02-27 提交的版本,查看 最新版本

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Greasemonkey 油猴子Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Userscripts ,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展后才能安装此脚本。

(我已经安装了用户脚本管理器,让我安装!)

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

(我已经安装了用户样式管理器,让我安装!)

// ==UserScript==
// @name         PTC Surf : Vie Faucet Script Websites
// @namespace
// @version      1.1
// @description  Automatically views all PTC ads and Rotate 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://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
// @namespace VengeanceXBT
// @description Automatically surfs PTC ads from supported faucet websites
// ==/UserScript==

(function() {
  'use strict';

const ptcLinks = [
  {
    currentUrl: "https://contentos.one/ptc",
    redirectUrl: "https://nobitafc.com/ptc"
  },
  {
    currentUrl: "https://nobitafc.com/ptc",
    redirectUrl: "https://faucet4u.com/ptc"
  },
  {
    currentUrl: "https://faucet4u.com/ptc",
    redirectUrl: "https://claimro.com/ptc"
  },
  {
    currentUrl: "https://claimro.com/ptc",
    redirectUrl: "https://ziifaucet.com/ptc"
  },
  {
    currentUrl: "https://ziifaucet.com/ptc",
    redirectUrl: "https://claimcash.cc/ptc"
  },
  {
    currentUrl: "https://claimcash.cc/ptc",
    redirectUrl: "https://hatecoin.me/ptc"
  },
  {
    currentUrl: "https://hatecoin.me/ptc",
    redirectUrl: "https://buxcoin.io/ptc"
  }
];

function redirectAfterDelay(url) {
  setTimeout(function () {
    window.location.href = url;
  }, 30000);
}

const currentUrl = window.location.href;
const nextLink = ptcLinks.find(link => link.currentUrl === currentUrl);

if (nextLink) {
  redirectAfterDelay(nextLink.redirectUrl);
}

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

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

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

})();