XVideos Alabama

Sweet home Alabama

25.09.2024 itibariyledir. En son verisyonu görün.

// ==UserScript==
// @name         XVideos Alabama
// @version      2024-08-26
// @description  Sweet home Alabama
// @author       ScriptKing
// @match        https://www.xvideos.com/*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=xvideos.com
// @grant        none
// @namespace https://greasyfork.org/users/1336691
// ==/UserScript==

(function() {
    // Create and append the transparent, blurred overlay
    var overlay = document.createElement('div');
    overlay.innerHTML = `
        <div style="
            position:fixed;
            top:0; left:0;
            width:100%; height:100%;
            background:rgba(0, 0, 0, 0.5);
            color:white;
            font-size:2em;
            display:flex;
            justify-content:center;
            align-items:center;
            z-index:10000;
            backdrop-filter: blur(8px);">
            Loading...
        </div>`;
    document.body.appendChild(overlay);

    const let_me_fantasise = () => {
        // Modify the content
        document.querySelectorAll('a, h2').forEach(e => {
            ['step-', 'step', 'Step-', 'Step', 'STEP-', 'STEP'].forEach(step => {
                e.innerHTML = e.innerHTML.replaceAll(step, '').replaceAll('  ', ' ');
            });
        });

        // Remove the overlay
        overlay.remove();
    };

    window.onload = let_me_fantasise;
    '1,2,4,6,8'.split(',').forEach(t => setTimeout(let_me_fantasise, t * 1000));
})();