- Go to https://x.com/settings/your_twitter_data/twitter_interests
- Go to console
Paste below
var checkboxes = document.querySelectorAll('input[type=checkbox]');
var checkedBoxes = Array.prototype.filter.call(checkboxes, function(box) {
return box.checked;
});
function uncheckWithDelay(index) {
if (index < checkedBoxes.length) {
checkedBoxes[index].click();
setTimeout(function() {
uncheckWithDelay(index + 1);
}, 3000); // 3 seconds delay
}
}
uncheckWithDelay(0);