Clicks Coin

Clickscoin BTC

您需要先安裝使用者腳本管理器擴展,如 TampermonkeyGreasemonkeyViolentmonkey 之後才能安裝該腳本。

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

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyUserscripts 後才能安裝該腳本。

你需要先安裝一款使用者腳本管理器擴展,比如 Tampermonkey,才能安裝此腳本

您需要先安裝使用者腳本管理器擴充功能後才能安裝該腳本。

(我已經安裝了使用者腳本管理器,讓我安裝!)

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

(我已經安裝了使用者樣式管理器,讓我安裝!)

// ==UserScript==
// @name         Clicks Coin
// @namespace    http://tampermonkey.net/
// @version      0.101
// @description  Clickscoin BTC
// @author       Crypto Invest
// @match        https://clickscoin.com/*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=clickscoin.com
// @grant        GM_info
// @grant        GM_setValue
// @grant        GM_getValue
// @grant        window.close
// @grant        GM_openInTab
// @grant        window.onurlchange
// @grant        GM_xmlhttpRequest
// @license Crypto BR
// ==/UserScript==
//FAZ LOGIN
let botaoClicado = false; // define uma variável para controlar se o botão foi clicado ou não
let botaoClicadoclick = false; // define uma variável para controlar se o botão foi clicado ou não
//FAZ FAUCET
const interval1o6 = setInterval(() => {
    if (document.querySelector('button[data-bs-target="#claimModal"]') && !botaoClicado) {
        document.querySelector('button[data-bs-target="#claimModal"]').click()
        botaoClicado = true; // atualiza a variável para indicar que o botão foi clicado
        clearInterval(interval1o6); // interrompe o intervalo
    }
}, 2000);
const interval1o7 = setInterval(() => {
    if (document.querySelector('.modal-footer button.cmn-btn') && !botaoClicadoclick) {
        if (unsafeWindow.grecaptcha && unsafeWindow.grecaptcha.getResponse().length > 0 || document.querySelector(".h-captcha > iframe") && document.querySelector(".h-captcha > iframe").getAttribute("data-hcaptcha-response").length > 0)
         {document.querySelector('.modal-footer button.cmn-btn[type="submit"]').click()
          botaoClicadoclick = true; // atualiza a variável para indicar que o botão foi clicado
          clearInterval(interval1o7); // interrompe o intervalo
         }
    }
}, 2000);
//Redirecionamento
setInterval (() => {
    if (window.location.href.includes("https://clickscoin.com/faucet") && document.getElementById('clock'))
    {
        location.reload(true);
    }},50000)
setInterval(() => {
        location.reload(true);
    }, 160000);
setInterval (() => {
    if (document.body.innerHTML.includes("You reached the maximum daily claims")) {
       window.close()
    }
}, 5000);

setInterval (() => {
const rows = document.querySelectorAll('.col-xl-3');
const rowsToRemove = Array.from(rows).filter(row => {
 const searchText = ['EARNNOW',
                     'SHORTSFLY',
                     'LINKS FLY.INC',
                     'COINSPARTY',
                     'LINKSLY',
                     'SHORTANO',
                     'PROMO-VISITS',
                     '1SHORT',
                     'FIRE-LINK'
                    ];
  return searchText.some(text => row.textContent.includes(text));
});

rowsToRemove.forEach(row => {
  row.remove();
});

},10)