Created
November 12, 2019 19:01
-
-
Save neodigm/53bcad834a62b442dfca6694cacc79a4 to your computer and use it in GitHub Desktop.
mutiClick Super Simple Vanilla JavaScript ES5 Clicker IIFE
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
var multiClick = (function( _d ){ // Click lots of stuff | |
return { | |
"all": function( sQuery ){ | |
if( sQuery ){ | |
[].slice.call( _d.querySelectorAll( sQuery ) ) | |
.filter(function( eL ){ eL.click() }) | |
} | |
} | |
} | |
})( document ); | |
multiClick.all("#profileTravelersTable_wrapper tr:not(.selected)"); |
Use the snippet below to unfollow an entire page of folks in the github UI.
multiClick.all("[value='Unfollow']");
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
In case you ever get the urge to rage mega mondo multi click . 💢