// ==UserScript== // @name Remove Popup Ads on mp4upload.com and aniwave.to // @namespace http://tampermonkey.net/ // @version 0.2 // @description Remove all popup ads on mp4upload.com and aniwave.to pages (please wait 1-2 secs before clicking the page) // @author Your name // @match https://www.mp4upload.com/* // @match https://aniwave.to/* // @grant none // @downloadURL none // ==/UserScript== (function() { 'use strict'; // Function to remove popup ads indefinitely function removePopupAds() { setInterval(function() { // Remove popups every second var popupAds = document.querySelectorAll('a[href^="http://"]'); popupAds.forEach(function(popupAd) { popupAd.remove(); }); }, 1000); // Check every 1 second } // Wait for 1 second before starting to remove popups setTimeout(removePopupAds, 1000); })();