Created
March 24, 2026 22:21
-
-
Save CostaFot/ebb32b390f1a05f42d4d741ced7185fe to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| const params = new URLSearchParams(window.location.search); | |
| if (params.get("q")) { | |
| const trySend = setInterval(() => { | |
| const button = document.querySelector('button[aria-label="Send message"]'); | |
| if (button && !button.disabled) { | |
| button.click(); | |
| clearInterval(trySend); | |
| } | |
| }, 200); | |
| setTimeout(() => clearInterval(trySend), 5000); | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment