Veck.io - ads/banner remover

Deletes those annoying side banners

Size

1.0 KB

Version

1.2

Created

Jan 28, 2026

Updated

6 days ago

1// ==UserScript==
2// @name         Veck.io - ads/banner remover
3// @namespace    hawk
4// @version      1.2
5// @description  Deletes those annoying side banners
6// @author       unrealsigmapower
7// @match        https://veck.io/*
8// @match        https://www.veck.io/*
9// @run-at       document-start
10// @grant        none
11// @downloadURL https://update.greasyfork.org/scripts/556317/Veckio%20-%20adsbanner%20remover.user.js
12// @updateURL https://update.greasyfork.org/scripts/556317/Veckio%20-%20adsbanner%20remover.meta.js
13// ==/UserScript==
14
15(function () {
16    'use strict';
17
18    function nuke() {
19
20        ['banner_300x250', 'banner_300x600'].forEach(id => {
21            const el = document.getElementById(id);
22            if (el) el.remove();
23        });
24
25        document.querySelectorAll('.banner-container').forEach(el => el.remove());
26    }
27
28    nuke();
29
30    new MutationObserver(nuke).observe(document.documentElement, {
31        childList: true,
32        subtree: true
33    });
34
35    window.addEventListener('load', nuke);
36})();
Veck.io - ads/banner remover | Robomonkey