Last active
January 29, 2018 14:15
-
-
Save Delivator/074d6c4218a9324d0778b5df32a2be00 to your computer and use it in GitHub Desktop.
This file contains 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
// In chrome: Open the developer console with CTRL + J and paste the code bellow in the console | |
(function() { | |
let elements = document.getElementsByClassName("btn_grey_black"); | |
for(var i = 0; i < elements.length; i++) { | |
let element = elements[i], | |
linkParts = element.getAttribute("href").split('\''); | |
UnsubscribeItem(linkParts[1], linkParts[3]); | |
} | |
})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment