Hội like chéo

Status
Not open for further replies.
Like hết mấy anh bên trên rồi nha, like lại dùm em phát. Thanks.

Code auto like F12 -> Console -> Paste code sau vào và Enter.

JavaScript:
Array.from(document.querySelectorAll('.reaction')).map(x => x.click());

Auto reaction

JavaScript:
Array.from(document.querySelectorAll('.reaction')).map(x => {
    let href = x.getAttribute('href');
   
    if (!href) return;

    // Thay 'reaction_id=2' bằng id bạn muốn
    // 1: like, 2: love, 3: haha, 4: wow, 5: sad, 6: angry
    href = href.replace('reaction_id=1', 'reaction_id=2');
    x.setAttribute('href', href);

    x.click();
});
 
Last edited:
Status
Not open for further replies.
Back
Top