Created
September 7, 2016 20:47
-
-
Save kevcjones-archived/b04ca28ab89a11ca689cd21537df4a84 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
#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