Skip to content

Instantly share code, notes, and snippets.

@micahriggan
Created April 3, 2018 00:44
Show Gist options
  • Save micahriggan/fb346e8b27e038859432f44e223c6771 to your computer and use it in GitHub Desktop.
Save micahriggan/fb346e8b27e038859432f44e223c6771 to your computer and use it in GitHub Desktop.
Delete all Facebook Pictures
// Press F12, go to console, paste the following script to delete photos from profile / cover
for(let p of document.querySelectorAll("[data-tooltip='Edit or Remove']")){p.click()};setTimeout(() => {for(let p of document.querySelectorAll("[data-action-type='delete_photo']")){p.click();} setTimeout(() => {for(let p of document.getElementsByClassName('layerConfirm')){p.click();}}, 1000)}, 1000);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment