Last active
December 30, 2017 16:09
-
-
Save kenhkelly/82e17a72e8aa77a604286ac0d80cc157 to your computer and use it in GitHub Desktop.
Remove all facebook page invites. Run in console on https://www.facebook.com/pages/?category=invites
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
var els = document.querySelectorAll('[data-tooltip-content="Remove Suggestion"]') | |
for (var i = 0; i < els.length; i++) { | |
els[i].click(); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment