Skip to content

Instantly share code, notes, and snippets.

@CostaFot
Created March 24, 2026 22:21
Show Gist options
  • Select an option

  • Save CostaFot/ebb32b390f1a05f42d4d741ced7185fe to your computer and use it in GitHub Desktop.

Select an option

Save CostaFot/ebb32b390f1a05f42d4d741ced7185fe to your computer and use it in GitHub Desktop.
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