Like chéo chào mừng Voz mới nào anh em

Status
Not open for further replies.
F12 -> console
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();
});
 
Status
Not open for further replies.
Back
Top