Created
April 14, 2014 16:25
-
-
Save prafulfillment/10662952 to your computer and use it in GitHub Desktop.
Delete all your FB Apps from your Privacy view -- Hackish
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
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(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Paste this in the Javascript console for Chrome.
Works as of: April 14, 2014