Created
March 25, 2018 13:56
-
-
Save Eduardo-Morales-Alberti/0f87995b9f1b12ea6363df67a3f8d780 to your computer and use it in GitHub Desktop.
Delete all photos from facebook.
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
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