Tipsguru Blank + Timer Redirect

Clears page, shows timer, then redirects

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// ==UserScript==
// @name         Tipsguru Blank + Timer Redirect
// @namespace    http://tampermonkey.net/
// @version      2.0
// @description  Clears page, shows timer, then redirects
// @match        https://tipsguru.in/*
// @match        http://tipsguru.in/*
// @grant        none
// @run-at       document-start
// ==/UserScript==

(function() {
    'use strict';

    let timeLeft = 240; // seconds

    // Wait until DOM is ready, then replace everything
    window.addEventListener('DOMContentLoaded', () => {

        // Clear entire page
        document.documentElement.innerHTML = "";

        // Create clean HTML
        const wrapper = document.createElement("div");
        wrapper.style.display = "flex";
        wrapper.style.justifyContent = "center";
        wrapper.style.alignItems = "center";
        wrapper.style.height = "100vh";
        wrapper.style.background = "#0f0f0f";
        wrapper.style.color = "#fff";
        wrapper.style.fontFamily = "Arial, sans-serif";
        wrapper.style.flexDirection = "column";

        const title = document.createElement("h1");
        title.innerText = "Please Wait...";
        title.style.marginBottom = "10px";

        const timer = document.createElement("div");
        timer.style.fontSize = "28px";
        timer.style.fontWeight = "bold";

        wrapper.appendChild(title);
        wrapper.appendChild(timer);
        document.body.appendChild(wrapper);

        // Countdown logic
        const interval = setInterval(() => {
            timer.innerText = `Redirecting in ${timeLeft}s`;
            timeLeft--;

            if (timeLeft < 0) {
                clearInterval(interval);
                window.location.href = "https://rarestudy.in/keyloginsuccess";
            }
        }, 1000);

    });

})();