Skip to content

Instantly share code, notes, and snippets.

@kenhkelly
Last active December 30, 2017 16:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kenhkelly/82e17a72e8aa77a604286ac0d80cc157 to your computer and use it in GitHub Desktop.
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
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