Skip to content

Instantly share code, notes, and snippets.

@gavinwilliams
Created May 25, 2011 08:53
Show Gist options
  • Save gavinwilliams/990614 to your computer and use it in GitHub Desktop.
Save gavinwilliams/990614 to your computer and use it in GitHub Desktop.
Ignore all facebook game and app requests
var e = document.getElementById('pagelet_requests'); var els = e.getElementsByTagName('input'); for(var i = 0; i < els.length; i++){ if(els[i].getAttribute('name') == 'actions[reject]'){ els[i].click(); } };
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment