Skip to content

Instantly share code, notes, and snippets.

@emersonlaurentino
Last active December 5, 2019 15:12
Show Gist options
  • Save emersonlaurentino/1b515f632a04fcb0cb8df9702485173c to your computer and use it in GitHub Desktop.
Save emersonlaurentino/1b515f632a04fcb0cb8df9702485173c to your computer and use it in GitHub Desktop.
send message by pressing enter on instagram web
// script
function sendMessageInstagram (e) {
if (e.keyCode === 13) {
document.querySelector('.X3a-9 button').click();
}
};
// execute
addEventListener("keyup", sendMessageInstagram);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment