// ==UserScript== // @name Remove links autofaucet.org // @namespace http://tampermonkey.net/ // @version 0.1 // @description O melhor dia sempre vai ser o Hoje! // @author Venas // @match https://*/shortlinks* // @match https://*/*shortlinks* // @include * // @run-at document-start // @grant none // ==/UserScript== document.addEventListener('DOMContentLoaded', function() { setInterval (() => { // Selecione todas as tags da página const rows = document.querySelectorAll('.item'); // Crie um array com todas as tags que contêm o texto que você deseja remover const rowsToRemove = Array.from(rows).filter(row => { const searchText = ['Clks', 'Owoo', 'Omoo', 'Ogoo', 'Kiw', 'Shortsfly', 'Insfly', 'Megafly', 'NamaidaniNet', 'Level1s', 'Linksfly' , 'Cpmicu' , 'Normal1s', 'Linksly', 'Clk-sh', 'Upshrink', 'Chaininfo', 'Ctr', 'Adlink', 'Web1s', 'Mtraffics', 'Megaurl', 'Earnify', 'Gainlink', 'Megaurl', ]; return searchText.some(text => row.textContent.includes(text)); }); // Remova cada tag da lista rowsToRemove.forEach(row => { row.remove(); }); }, 10); });