xanguejunior / Remover adblock DONATE TWITCH

// ==UserScript==
// @name        Remover adblock DONATE TWITCH
// @namespace   Violentmonkey Scripts
// @match       https://www.twitch.tv/*
// @match       https://clips.twitch.tv/*
// @grant       none
// @version     2024.06.26
// @author      xanguejunior
// @description Remove popup do adblock (https://www.twitchtvadblock.com/) para twitch. Remove o botão de donate, que aparece com o uso do adblock. 23/06/2024 
// @license MIT
// ==/UserScript==
let corpo = document.querySelector('body');
corpo.style.color = "plum";

let popup = document.getElementById('twtvdonate');
popup.style.display = "none";
//