Created
August 3, 2017 19:51
-
-
Save raphaeljolivet/4509978019ca9e67dd42c1b94da23965 to your computer and use it in GitHub Desktop.
erertert
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
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