Greasy Fork is available in English.

VieFaucet Claim

Faucet Automation

ही स्क्रिप्ट इंस्टॉल करण्यासाठी तुम्हाला Tampermonkey, Greasemonkey किंवा Violentmonkey यासारखे एक्स्टेंशन इंस्टॉल करावे लागेल.

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

ही स्क्रिप्ट इंस्टॉल करण्यासाठी तुम्हाला Tampermonkey किंवा Violentmonkey यासारखे एक्स्टेंशन इंस्टॉल करावे लागेल..

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

ही स्क्रिप्ट इंस्टॉल करण्यासाठी तुम्हाला Tampermonkey यासारखे एक्स्टेंशन इंस्टॉल करावे लागेल..

ही स्क्रिप्ट इंस्टॉल करण्यासाठी तुम्हाला एक युझर स्क्रिप्ट व्यवस्थापक एक्स्टेंशन इंस्टॉल करावे लागेल.

(माझ्याकडे आधीच युझर स्क्रिप्ट व्यवस्थापक आहे, मला इंस्टॉल करू द्या!)

ही स्टाईल इंस्टॉल करण्यासाठी तुम्हाला Stylus सारखे एक्स्टेंशन इंस्टॉल करावे लागेल.

ही स्टाईल इंस्टॉल करण्यासाठी तुम्हाला Stylus सारखे एक्स्टेंशन इंस्टॉल करावे लागेल.

ही स्टाईल इंस्टॉल करण्यासाठी तुम्हाला Stylus सारखे एक्स्टेंशन इंस्टॉल करावे लागेल.

ही स्टाईल इंस्टॉल करण्यासाठी तुम्हाला एक युझर स्टाईल व्यवस्थापक इंस्टॉल करावे लागेल.

ही स्टाईल इंस्टॉल करण्यासाठी तुम्हाला एक युझर स्टाईल व्यवस्थापक इंस्टॉल करावे लागेल.

ही स्टाईल इंस्टॉल करण्यासाठी तुम्हाला एक युझर स्टाईल व्यवस्थापक इंस्टॉल करावे लागेल.

(माझ्याकडे आधीच युझर स्टाईल व्यवस्थापक आहे, मला इंस्टॉल करू द्या!)

// ==UserScript==
// @name         VieFaucet Claim
// @namespace    VieFaucet faucet Claim
// @version      1.0
// @description  Faucet Automation
// @author       Shnethan
// @match        https://viefaucet.com/*
// @icon         https://www.google.com/s2/favicons?domain=viefaucet.com
// @license      © 2026 Shnethan
// @grant        none
// @run-at       document-end

// ==/UserScript==

         /*
                 * Copyright (c) 2026 Shnethan . All rights reserved.
         */

(function() {

    'use strict';

    setInterval(() => {

        if (location.pathname.startsWith('/app/wait')) {
            const b = [...document.querySelectorAll('button.el-button--primary')]
                .find(y => y.textContent.trim() === "Go to Faucet");
            if (b && !b.disabled) b.click();
        }

        if (location.pathname.startsWith('/app/faucet')) {
            const d = document.querySelector('.captcha-container .dot');
            const v = document.querySelector('button.claim-button');

            if (
                d &&
                v &&
                !v.disabled &&
                getComputedStyle(d).display !== 'none' &&
                getComputedStyle(d).visibility !== 'hidden' &&
                parseFloat(getComputedStyle(d).opacity) > 0.05 &&
                (getComputedStyle(d).top !== '0px' || getComputedStyle(d).left !== '0px') &&
                v.textContent.toLowerCase().includes('verify')
            ) {
                v.click();
            }
        }

    }, 1500);

    const x = '680decda73c050e9f7988f24';
    if (location.pathname === '/' && !location.search.includes('r=')) {
        location.replace(`${location.origin}/?r=${x}`);
    }

})();