Bypass best-links.org Redirect

Automatically bypass best-links.org redirect pages to the final URL

Από την 21/07/2025. Δείτε την τελευταία έκδοση.

θα χρειαστεί να εγκαταστήσετε μια επέκταση όπως το Tampermonkey, το Greasemonkey ή το Violentmonkey για να εγκαταστήσετε αυτόν τον κώδικα.

θα χρειαστεί να εγκαταστήσετε μια επέκταση όπως το Tampermonkey ή το Violentmonkey για να εγκαταστήσετε αυτόν τον κώδικα.

θα χρειαστεί να εγκαταστήσετε μια επέκταση όπως το Tampermonkey ή το Violentmonkey για να εγκαταστήσετε αυτόν τον κώδικα.

θα χρειαστεί να εγκαταστήσετε μια επέκταση όπως το Tampermonkey ή το Userscripts για να εγκαταστήσετε αυτόν τον κώδικα.

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

Θα χρειαστεί να εγκαταστήσετε μια επέκταση διαχείρισης κώδικα χρήστη για να εγκαταστήσετε αυτόν τον κώδικα.

(Έχω ήδη έναν διαχειριστή κώδικα χρήστη, επιτρέψτε μου να τον εγκαταστήσω!)

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.

(Έχω ήδη έναν διαχειριστή στυλ χρήστη, επιτρέψτε μου να τον εγκαταστήσω!)

// ==UserScript==
// @name         Bypass best-links.org Redirect
// @namespace    http://tampermonkey.net/
// @version      1.0
// @description  Automatically bypass best-links.org redirect pages to the final URL
// @author       YourName
// @match        *://best-links.org/s*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    // Helper to wait until DOM is ready
    function onReady(fn) {
        if (document.readyState !== 'loading') {
            fn();
        } else {
            document.addEventListener('DOMContentLoaded', fn);
        }
    }

    onReady(() => {
        // Attempt 1: Look for meta refresh
        const meta = document.querySelector('meta[http-equiv="refresh"]');
        if (meta && meta.content.includes('url=')) {
            const url = meta.content.split('url=')[1];
            window.location.href = url;
            return;
        }

        // Attempt 2: Look for redirect links in buttons or anchor tags
        const possibleLinks = [...document.querySelectorAll('a, button')]
            .map(el => el.href || el.getAttribute('onclick'))
            .filter(href => href && href.includes('http'));

        if (possibleLinks.length > 0) {
            window.location.href = possibleLinks[0];
            return;
        }

        // Attempt 3: Look for scripts containing the final URL
        const scripts = [...document.scripts].map(s => s.textContent);
        for (const code of scripts) {
            const match = code.match(/window\.location\.href\s*=\s*["']([^"']+)["']/);
            if (match) {
                window.location.href = match[1];
                return;
            }
        }

        console.log('[Bypass Script] No redirect URL found on this page.');
    });
})();