AD Block for Aranzulla site

A simple script to remove ads from the Aranzulla website. This script bypass the adblock detection of the site.

// ==UserScript==
// @name        AD Block for Aranzulla site
// @namespace   Violentmonkey Scripts
// @match       https://www.aranzulla.it/*
// @grant       none
// @version     1.0
// @author      Gianluca Rainis
// @license     MIT
// @description A simple script to remove ads from the Aranzulla website. This script bypass the adblock detection of the site.
// ==/UserScript==

function loop() {
    document.body.querySelectorAll("iframe").forEach(frame => {
        //frame.src = "";
        frame.remove();
    });

    setTimeout(loop, 100);
}

loop();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址