https://faucet-sol.com/dashboard

Зарабатывайте 0,00000045 SOL в минуту, награды будут приходить автоматически!

Du musst eine Erweiterung wie Tampermonkey, Greasemonkey oder Violentmonkey installieren, um dieses Skript zu installieren.

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

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

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

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

Sie müssten eine Skript Manager Erweiterung installieren damit sie dieses Skript installieren können

(Ich habe schon ein Skript Manager, Lass mich es installieren!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

// ==UserScript==
// @name         https://faucet-sol.com/dashboard
// @namespace    http://tampermonkey.net/
// @version      2025-04-03
// @description  Зарабатывайте 0,00000045 SOL в минуту, награды будут приходить автоматически!
// @author       Danik Odze
// @match        https://faucet-sol.com/dashboard
// @icon         https://www.google.com/s2/favicons?sz=64&domain=faucet-sol.com
// @grant        none
// @license MIT
// ==/UserScript==
// установите скрипт https://greasyfork.org/ru/scripts/387937-ultra-popup-blocker
(function() {
    'use strict';

    setTimeout(function() {
		console.log('прошла минута');
		window.location.reload();
	}, 1200*60);
var startButton = document.createElement('captcha');
startButton.style.position = 'fixed';
startButton.style.top = '100px';
startButton.style.right = '0px';
startButton.style.color = 'red';
document.body.appendChild(startButton);
    let countdown = 60;
    const timerInterval = setInterval(function() {
    countdown--;
    if (countdown <= 0) {
    startButton.innerHTML = 'Refresh......';
    clearInterval(timerInterval);
    } else {
    const countdownText = document.createTextNode(` Wait for ${countdown} seconds`);
    startButton.innerHTML = '';
    startButton.appendChild(countdownText);
    }
    }, 1000);
})();