Sleazy Fork is available in English.

XVideos Alabama

Sweet home Alabama

// ==UserScript==
// @name         XVideos Alabama
// @version      2024-07-19
// @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() {
    var style = document.createElement('style');
    style.innerHTML = 'a { display: none; } h2 {display: none;}';
    document.head.appendChild(style);

    const let_me_fantasise = () => {
        //Customize it as you wish in the boundaries of legality

        document.querySelectorAll('a').forEach(e => {
            ['step-','step','Step-','Step','STEP-','STEP'].forEach(step => e.innerHTML = e.innerHTML.replaceAll(step, ''))
            e.innerHTML = e.innerHTML.replaceAll('  ',' ')
        })
        document.querySelectorAll('h2').forEach(e => {
            ['step-','step','Step-','Step','STEP-','STEP'].forEach(step => e.innerHTML = e.innerHTML.replaceAll(step, ''))
            e.innerHTML = e.innerHTML.replaceAll('  ',' ')
        })
        document.head.removeChild(style);
    }
    window.onload = let_me_fantasise
    '1,2,4,6,8'.split(',').forEach(t => setTimeout(let_me_fantasise, t * 1000))
})();