Greasy Fork is available in English.

SamFW Anti-Adblock Killer

Blocks adblock detection on samfw.com

// ==UserScript==
// @name         SamFW Anti-Adblock Killer
// @description  Blocks adblock detection on samfw.com
// @version      0.1
// @author       LuK1337
// @match        *://samfw.com/*
// @grant        none
// @run-at       document-end
// @namespace    https://greasyfork.org/users/721956
// ==/UserScript==

(function() {
    'use strict';

    let requestDownloadOrig = window.requestDownload;

    window.requestDownload = function(token) {
        window.adBE = undefined;
        return requestDownloadOrig(token);
    };
})();