Bypass Link Confirmation

Automatically bypasses redirect/warning pages on selected websites.

Verze ze dne 24. 06. 2025. Zobrazit nejnovější verzi.

K instalaci tototo skriptu si budete muset nainstalovat rozšíření jako Tampermonkey, Greasemonkey nebo Violentmonkey.

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

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Violentmonkey.

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Userscripts.

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

K instalaci tohoto skriptu si budete muset nainstalovat manažer uživatelských skriptů.

(Už mám manažer uživatelských skriptů, nechte mě ho nainstalovat!)

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.

(Už mám manažer uživatelských stylů, nechte mě ho nainstalovat!)

// ==UserScript==
// @name         Bypass Link Confirmation
// @namespace    https://greasyfork.org/en/scripts/540638-bypass-link-confirmation
// @version      1.1
// @description  Automatically bypasses redirect/warning pages on selected websites.
// @match        *://forums.socialmediagirls.com/goto/link-confirmation*
// @match        *://*.stremio.com/warning*
// @run-at       document-start
// @license      MIT
// ==/UserScript==

(function () {
    const hostname = window.location.hostname;

    // Bypass SocialMediaGirls confirmation
    if (hostname.includes("socialmediagirls.com")) {
        const urlParam = new URLSearchParams(window.location.search).get("url");
        if (urlParam) {
            try {
                const decodedUrl = atob(urlParam);
                window.location.replace(decodedUrl);
            } catch (e) {
                console.error("Failed to decode SocialMediaGirls URL:", e);
            }
        }
    }

    // Bypass Stremio warning
    if (hostname.includes("stremio.com") && window.location.pathname === "/warning") {
        const hash = window.location.hash;
        if (hash.startsWith("#https")) {
            try {
                const targetUrl = decodeURIComponent(hash.substring(1));
                window.location.replace(targetUrl);
            } catch (e) {
                console.error("Failed to decode Stremio URL:", e);
            }
        }
    }
})();