I'm not saying that I, as a super moderator, do this. Nor would I recommend anyone doing this...

However, a simple tamper monkey script can fix this:
Code:
// ==UserScript==
// @name         Hide Ads
// @namespace    http://tampermonkey.net/
// @version      2025-09-19
// @description  hides advertisements
// @author       You
// @match        https://www.vbforums.com/*
// @match
// @icon         https://www.google.com/s2/favicons?sz=64&domain=vbforums.com
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    const removeAds = () => {
        document.querySelectorAll('[data-google-query-id]').forEach(item => item.parentElement?.remove());
        document.querySelectorAll('.below_body').forEach(item => item.remove());
    };
    const observer = new MutationObserver((mutationsList, observer) => {
        for (const mutation of mutationsList) {
            removeAds();
        }
    });
    observer.observe(document.body, {
        childList: true,
        subtree: true
    });
})();