Last active
November 21, 2016 13:25
-
-
Save Nekaravaev/24bfe03e0646ac78f83b8be1e97acf7b to your computer and use it in GitHub Desktop.
Decline invitations [VK]
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
/* | |
* 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