theonedemon / superetka remove ads

// ==UserScript==
// @name         superetka remove ads
// @namespace    http://tampermonkey.net/
// @version      2023-12-20
// @description  try to take over the world!
// @author       You
// @match        https://superetka.com/elsa/*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=superetka.com
// @grant        none
// @license MIT
// ==/UserScript==

(function(window) {
    'use strict';
    $('.time1Over').remove();
    window.showTime1 = function() {};
    window.timesTime1 = function() {};
    window.intervalTime1 = function() {};
    //window._0x25bb = function() { return {};};
    $.ajaxPrefilter(function(options, originalOptions, jqXHR) {
        if (options.data && options.data.indexOf('ajaxTime3') !== -1 && options.type.toUpperCase() === 'GET') {
            options.data = options.data.replace("ajaxTime3", "ajaxTime2");
            console.log('No ads');
        }
    });
})(window);