Skip to content

Instantly share code, notes, and snippets.

@Eduardo-Morales-Alberti
Created March 25, 2018 13:56
Show Gist options
  • Save Eduardo-Morales-Alberti/0f87995b9f1b12ea6363df67a3f8d780 to your computer and use it in GitHub Desktop.
Save Eduardo-Morales-Alberti/0f87995b9f1b12ea6363df67a3f8d780 to your computer and use it in GitHub Desktop.
Delete all photos from facebook.
var timer = setInterval(() => {
document.querySelector('a[data-tooltip-content="Editar o eliminar"]').click();
setTimeout(() => {
document.querySelector('li[data-label="Eliminar esta foto"] a').click();
setTimeout(() => {
document.querySelector('button.layerConfirm[type="submit"]').click();
}, 1000);
}, 1000);
}, 1000);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment