You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
a = setInterval(
function(){
var ran = Math.random();
var dislike = Math.floor(ran*100);
var mod = 11;
var result = dislike%mod;
if (result==0) {
var elem = document.querySelector('[aria-label="Nope"]');
elem[0].click();
} else {
var elem = document.querySelector('[aria-label="Like"]');
elem.click();
}
},2345)
see this new in inspect
svg-fill-linear__like
how ever cannot get it to work by substitude this
The text was updated successfully, but these errors were encountered: