Skip to content

Instantly share code, notes, and snippets.

View kennedysmartins's full-sized avatar
💭
studing

Kennedy Martins kennedysmartins

💭
studing
View GitHub Profile
@ar5had
ar5had / whatsappAutoMsgSender.js
Last active March 18, 2017 13:32
Open chat in web whatsapp then open console and paste this code in console terminal and hit enter.
setInterval(function(){
if(document.querySelector(".icon.icon-smiley.btn-emoji") != null)
document.querySelector(".icon.icon-smiley.btn-emoji").click();
document.querySelector(".emojik.emojiordered1200").click();
document.querySelector(".icon.btn-icon.icon-send.send-container").click();
}, 500);