Skip to content

Instantly share code, notes, and snippets.

@raphaeljolivet
Created August 3, 2017 19:51
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 raphaeljolivet/4509978019ca9e67dd42c1b94da23965 to your computer and use it in GitHub Desktop.
Save raphaeljolivet/4509978019ca9e67dd42c1b94da23965 to your computer and use it in GitHub Desktop.
erertert
javascript:(function(){
var click = function(e){e.click()};
var nbInvite = 0;
var exec = function() {
var invites = document.querySelectorAll("button[type='submit'][class*='_qfo']");
nbInvite += invites.length;
[].forEach.call(invites, click);
};
exec();
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment