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
// Copy/paste below code into browser console | |
// when you're in a People list | |
// call 'connect()' method every page | |
// it will send connection request to every person with 'Connect' button inside that page | |
function delay(time) { | |
return new Promise(resolve => setTimeout(resolve, time)) | |
} | |
function findButtons() { |