Logo
Drew™
use this to unselect all of the interests in x

chrome > dev tools > console

var counter = 0;
var interests = $$('input:checked');

interests.forEach((w) => {
var current = counter;
var wait = Math.floor(Math.random() * 5000) + 1000; // random between 1000ms (1s) and 5000ms (5s)
setTimeout(() => {
console.log(current + '/' + interests.length);
w.click();
}, wait * counter);
counter++;
});
15 hours ago

No replys yet!

It seems that this publication does not yet have any comments. In order to respond to this publication from {@publisher_name@}, click on {@svg_icon@} at the bottom under it