Skip to content

Instantly share code, notes, and snippets.

@ZackMattor
Created October 17, 2018 15:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ZackMattor/9b05473239b79d9ffc43872041cdd803 to your computer and use it in GitHub Desktop.
Save ZackMattor/9b05473239b79d9ffc43872041cdd803 to your computer and use it in GitHub Desktop.
Generates good conversation in LinkedIn chats
// Sends sugested texts in linked in as fast as we can
let i = setInterval(() => {
let $btns = $('.conversations-quick-replies__container button');
if($btns.length == 0) return;
console.log('clicking');
$btns[Math.floor(Math.random() * $btns.length)].click();
}, 100);
// to stop
clearInterval(i);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment