Skip to content

Instantly share code, notes, and snippets.

@jnv
Created October 15, 2014 10:17
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 jnv/dfc73ecadb4a3e355081 to your computer and use it in GitHub Desktop.
Save jnv/dfc73ecadb4a3e355081 to your computer and use it in GitHub Desktop.
#selfXSS
// Remove all groups at https://www.facebook.com/browsegroups/
[].forEach.call(document.querySelectorAll('.declineButton'),function(e){e.click()})
// Reject all recommendations at https://www.facebook.com/suggestions/rate/
[].forEach.call(document.querySelectorAll('a[ajaxify*="event=No"]'),function(e){e.click()})
// Remove all FB pages suggestions at https://www.facebook.com/pages/
[].forEach.call(document.querySelectorAll('._5l77'),function(e){e.click();})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment