Conversaciones » Peticiones de scripts

Unlike all facebook pages 2022

§
Publicado: 12/4/2022

I found a working code to bulk unlike facebook pages, but facebook seems to block bulk activity on this page, i found another work around is to do the same code but on activity log(there is no blocking of activity), can someone help me create this code?

the old code: https://gist.github.com/SAFAD/dfc16d4d485aa78031d47c458e7b652e
Unlike all facebook pages 2022:
Go to: https://m.facebook.com/pages/launchpoint/liked_pages
Paste the following script into console (F12 -> console):
var unlike_all = ()=> {
[].slice.call(document.querySelectorAll('[data-sigil="action-title"')).filter(x=>x.innerText.indexOf('Unlike') !=-1).map(x=>{x.click()});
window.scrollTo(0,document.body.scrollHeight);
window.setTimeout(unlike_all, 3 * 1000)
};
unlike_all();

the new code requirement: to do the same thing but on the activity log page: " https://www.facebook.com/usrID/allactivity?activity_history=false&category_key=LIKEDINTERESTS&manage_mode=false&should_load_landing_page=false "

Publicar respuesta

Inicia sesión para responder.