The site keeps spamming graphic ads that pollutes your eyes! this script removes all of them so you can do your business peacefully.
// ==UserScript==
// @name Anime1.me INAPPROPRIATE ADS BLOCKER!! BLOCK ALL THE STUPID ADS AND POSTERS
// @namespace http://tampermonkey.net/
// @version 2023-12-12
// @description The site keeps spamming graphic ads that pollutes your eyes! this script removes all of them so you can do your business peacefully.
// @author You
// @match https://anime1.me/*
// @grant none
// @license PRIVATE
// ==/UserScript==
(function() {
'use strict';
document.querySelectorAll('div[id^="ad-"]').forEach(stupidad=>{
stupidad.remove();
});
document.querySelectorAll('div[class="vjs-poster"]').forEach(stupidvideoplayer=>{
stupidvideoplayer.style.backgroundImage = "";
stupidvideoplayer.style.background = "linear-gradient(144deg, rgba(9,9,121,1) 25%, rgba(0,212,255,1) 75%);";
});
//[poster~="playerImg"]
document.querySelectorAll('video').forEach(stupidfreakingplayer=>{
stupidfreakingplayer.poster = "";
});
})();