Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- let text = "mommy";
- let elem = document.querySelectorAll('[data-a-target=chat-input-text]')[0];
- setInterval(() => {
- if (elem.textContent.includes(text)) {
- elem.textContent = "";
- }
- }, 100);
Advertisement
Add Comment
Please, Sign In to add comment