Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- var likeSpans = document.querySelectorAll('span[translate="LIKE"]');
- if (likeSpans.length > 0) {
- likeSpans.forEach(function(likeSpan) {
- likeSpan.click();
- });
- console.log("all photos liked");
- } else {
- console.log("no photos to like");
- }
Advertisement
Add Comment
Please, Sign In to add comment