Skip to content

Instantly share code, notes, and snippets.

@Nekaravaev
Last active November 21, 2016 13:25
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 Nekaravaev/24bfe03e0646ac78f83b8be1e97acf7b to your computer and use it in GitHub Desktop.
Save Nekaravaev/24bfe03e0646ac78f83b8be1e97acf7b to your computer and use it in GitHub Desktop.
Decline invitations [VK]
/*
* Execute on new.vk.com/groups 👍🏻
*/
var declineList = document.getElementsByClassName('flat_button secondary button_small button_light');
var lengthOfDecline = declineList.length;
for (var i = 0; i < lengthOfDecline; i++) {
declineList[i].click();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment