Skip to content

Instantly share code, notes, and snippets.

@Delivator
Last active January 29, 2018 14:15
Show Gist options
  • Save Delivator/074d6c4218a9324d0778b5df32a2be00 to your computer and use it in GitHub Desktop.
Save Delivator/074d6c4218a9324d0778b5df32a2be00 to your computer and use it in GitHub Desktop.
// 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