/* | |
This works on 2/12/2018, but will need to be updated as facebook updates it's DOM | |
1: Go to your profile, click More->Likes | |
2: Scroll down to the bottom of the page and keep scrolling as facebook loads more of your 'likes' | |
3: Open the console and c&p this: | |
*/ | |
document.querySelectorAll('button.PageLikedButton').forEach(b=>b.click()); | |
document.querySelectorAll('li[data-label="Unlike"] a').forEach(a=>a.click()); |
Thanks a ton for this!
@tatiana-scda it is working, just paste the second line of code again & press enter.
Works, Run it once and then wait for little when little Unlike button appears, run again!!!
Thanks for making it!
Works like a charm!
You may need to change the "Unlike" text to fit your language for it to work in your case.
Also, this will unlike all pages within your view, so usually like 25 at a time or so.
Scrolling down in the page will make more pages visible, but will increase the time the script takes.
Unless you can fit all your liked pages in 1 view without needing to scroll for hours, I suggest repeating the script (for hours) instead. Looping the script will cause slow-down and errors.
This may work, use at own risk:
function loop() {
setTimeout(function unlike() {
document.querySelectorAll('button.PageLikedButton').forEach(b=>b.click());
document.querySelectorAll('li[data-label="Unlike"] a').forEach(a=>a.click()); // Change 'Unlike' to fit your localised version
loop();
}, 0);
}
loop();
So add some rate limiting (sleep) to the script. This'll ofcourse slow it down a lot.
how do i add a sleep script?
Please I hope there will be an update on this on the new facebook. Does it work with u guys?
It seems it doesn't work on me anymore. :(
not working anymore?