Skip to content

Instantly share code, notes, and snippets.

@kevcjones-archived
Created September 7, 2016 20:47
Show Gist options
  • Save kevcjones-archived/b04ca28ab89a11ca689cd21537df4a84 to your computer and use it in GitHub Desktop.
Save kevcjones-archived/b04ca28ab89a11ca689cd21537df4a84 to your computer and use it in GitHub Desktop.
#Couldn't find a remove all from here... and it was click one at a time...
#After i was sure i didn't need what was left I ran this in my console to bulk remove the rest
var a = document.querySelectorAll(".c-sa-ra");
for(var i = 0; i < a.length; i++){
a[i].style = {};
a[i].click();
}
# Did the trick... 892 dev site logins gone for good!
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment