Kesuksesan

mencari dia seorang

目前為 2023-09-16 提交的版本,檢視 最新版本

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// ==UserScript==
// @name        Kesuksesan
// @namespace   http://tampermonkey.net/
// @version     0.5
// @description mencari dia seorang
// @match       https://*/*
// @grant       none
// ==/UserScript==

(function() {
    'use strict';

    var targetURL = "https://id.arahlink.com/GdwpD";

    // Set the delay in milliseconds before redirecting
    var delay = 5000;

    // Check if the current URL matches the target site
    if (window.location.href.startsWith("https://nguli-online.me/")) {
        // Create a countdown element
        var countdown = document.createElement("div");
        countdown.style.position = "fixed";
        countdown.style.top = "10px";
        countdown.style.right = "10px";
        countdown.style.padding = "10px";
        countdown.style.border = "1px solid black";
        countdown.style.backgroundColor = "white";
        countdown.style.zIndex = "9999";
        countdown.innerHTML = "Redirecting to " + targetURL + " in <span id='timer'></span> seconds";

        // Append the countdown element to the body
        document.body.appendChild(countdown);

        // Get the timer element
        var timer = document.getElementById("timer");

        // Set the initial timer value
        timer.innerHTML = delay / 1000;

        // Start the countdown function
        var countdownFunc = setInterval(function() {
            // Decrease the timer value by 1
            timer.innerHTML = parseInt(timer.innerHTML) - 1;

            // If the timer reaches 0, clear the interval and redirect to the target URL
            if (timer.innerHTML == 0) {
                clearInterval(countdownFunc);
                window.location.href = targetURL;
            }
        }, 1000); // Execute the function every 1 second
    }
    // Check if the current URL matches https://id.arahlink.com/
    if (window.location.href.startsWith("https://id.arahlink.com/")) {
        function elementExists(query) {
            return document.querySelector(query) !== null;
        }

        function click(query) {
            document.querySelector(query).click();
        }

        function clickIfElementExists(query, timeInSec = 1) {
            if (elementExists(query)) {
                setTimeout(function() {
                    click(query);
                }, timeInSec * 1000);
            }
        }

        // Call the function to click a button with class btn btn-primary if it exists
        clickIfElementExists('.btn.btn-primary');

        // Fungsi untuk mencari elemen a dengan teks "Dapatkan tautan"
        function findLinkElement() {
            var links = document.getElementsByTagName("a");
            for (var i = 0; i < links.length; i++) {
                var link = links[i];
                var text = link.textContent.trim();
                if (text === "Dapatkan tautan") {
                    link.textContent = "SUKSES";
                    return link;
                }
            }
            return null;
        }

        setInterval(function() {
            var link = findLinkElement();
            if (link) {
                setTimeout(function() {
                    window.location.href = "https://id.arahlink.com/";
                }, 1000);
            }
        }, 1000);
    }

    // For the other website, redirect on refresh
function redirectOnRefresh() {
    if (window.location.hostname === "id.arahlink.com") {
        var redirectURL = "https://nguli-online.me/?wpsafelink=JJIQiwMc56wApbsCadfEeFlgiHnikT3E0Rzc5R1BYZSs0VC9yNkw0L3RmOGF5LytlLzdJWDRNUDU0ajNndFlEQT0=&redir=aHR0cHM6Ly9uZ3VsaS1vbmxpbmUubWUv";
        if (performance.navigation.type === 1) {
            window.location.href = redirectURL;
        }
    }
}

    redirectOnRefresh();

    // Check if the current URL matches "id.arahlink.com" without a trailing slash
if (window.location.hostname === "id.arahlink.com" && window.location.pathname === "/") {
    function findImg() {
        // Mencari elemen img dengan class inserted-btn mtz
        var img = document.querySelector("img.inserted-btn.mtz");
        // Jika elemen img ditemukan
        if (img) {
            // Hentikan pencarian
            clearInterval(interval);
            // Setelah 2 detik
            setTimeout(function() {
                // Klik elemen img
                img.click();
            }, 1000);
        }
    }

    // Membuat interval untuk mencari elemen img setiap 1 detik
    var interval = setInterval(findImg, 1000);
}

})();