- Open the facebook window with people yuo want to invite
- Copy the code and place on your browser url input OR open console and place
- To use in the browser url input, copy the code below:
javascript:var buttons; buttons = document.getElementsByClassName('_42ft'); for (var i = 0; i < buttons.length; i++) { if(buttons[i].getAttribute('ajaxify') != null){ if(buttons[i].getAttribute('ajaxify').indexOf('invite') != -1){ buttons[i].click(); } } }
I modify the code to have delay 1s you dodn;t nee any sht PRO addons for that here is the cod
javascript:var buttons; var i = 1; buttons = document.getElementsByClassName('_42ft'); function myLoop () { setTimeout( function () { if(buttons[i].getAttribute('ajaxify') != null){ if(buttons[i].getAttribute('ajaxify').indexOf('invite') != -1){ buttons[i].click(); } } i++ ; if (i < 10) { myLoop() ; } } , 1000 ) } myLoop();