Skip to content

Instantly share code, notes, and snippets.

@prafulfillment
Created April 14, 2014 16:25
Show Gist options
  • Save prafulfillment/10662952 to your computer and use it in GitHub Desktop.
Save prafulfillment/10662952 to your computer and use it in GitHub Desktop.
Delete all your FB Apps from your Privacy view -- Hackish
function confirmDialog(){
document.getElementsByName('delete_app_actions')[0].click()
document.getElementsByName('ok')[0].click()
setTimeout(deleteApp,3000);
}
function deleteApp(){
document.getElementsByClassName('uiCloseButton')[0].click()
setTimeout(confirmDialog,1000);
}
deleteApp();
@prafulfillment
Copy link
Author

Paste this in the Javascript console for Chrome.

Works as of: April 14, 2014

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment