Advertisement
ibzi

new remove

May 23rd, 2024
599
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. document.querySelector(".text-center").remove();
  2. document.querySelector("p.absolute").remove();
  3. document.querySelectorAll('div').forEach(el => /^By @\w+$/.test(el.textContent) && el.remove());
  4.  
  5. setInterval(() => {
  6.   document.querySelectorAll('div').forEach(el => el.textContent === 'c.ai' && el.remove());
  7. }, 1000);
  8.  
  9. document.querySelector("div.\\32 xl\\:hidden:nth-child(1) > div:nth-child(1)").remove();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement