TipsGuru Safe Bypass (No Error)

Waits 6 seconds to set cookies, then redirects to avoid "Unauthorized Access".

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// ==UserScript==
// @name         TipsGuru Safe Bypass (No Error)
// @namespace    http://tampermonkey.net/
// @version      4.0
// @description  Waits 6 seconds to set cookies, then redirects to avoid "Unauthorized Access".
// @author       Chat G
// @match        *://tipsguru.in/prolink.php*
// @match        *://*.tipsguru.in/prolink.php*
// @run-at       document-idle
// @grant        none
// @license      MIT
// ==/UserScript==

(function() {
    'use strict';

    // Screen par user ko dikhane ke liye message
    let overlay = document.createElement('div');
    overlay.innerHTML = '<h2 style="background:red;color:white;padding:10px;text-align:center;position:fixed;top:0;left:0;width:100%;z-index:9999;">Bypassing... Please Wait 6 Seconds (Fixing Unauthorized Error)</h2>';
    document.body.appendChild(overlay);

    // 6 Second ka wait taaki "Unauthorized" error na aaye
    setTimeout(function() {
        let params = new URLSearchParams(window.location.search);
        let id = params.get('id');

        if (id) {
            try {
                let finalUrl = atob(decodeURIComponent(id));
                if(finalUrl && finalUrl.includes('http')) {
                    // Message update
                    overlay.innerHTML = '<h2 style="background:green;color:white;padding:10px;text-align:center;position:fixed;top:0;left:0;width:100%;z-index:9999;">Redirecting Now...</h2>';
                    // Safe Redirect
                    window.location.href = finalUrl;
                }
            } catch(e) {
                console.log("Error:", e);
            }
        }
    }, 6000); // 6000ms = 6 Seconds wait
})();