1 min read

Reset Your Twitter/X Feed:

To keep your Twitter experience focused and productive, cleaning up your interest list regularly is crucial. However, doing this manually is a tedious and time-consuming task, prone to errors. But don’t worry, I’ve got you covered.
Reset Your Twitter/X Feed:
Photo by Luke Chesser / Unsplash

A Simple Solution to Stay Focused

We’ve all been there—scrolling through Twitter only to realize your feed is clogged with content you didn’t ask for. Maybe you searched for something out of curiosity or clicked on a trending hashtag, and now Twitter thinks you’re obsessed with that topic. Before you know it, your feed is dominated by irrelevant tweets, pulling your attention away from what matters.

To keep your Twitter experience focused and productive, cleaning up your interest list regularly is crucial. However, doing this manually is a tedious and time-consuming task, prone to errors. But don’t worry, I’ve got you covered.

I’ve written a simple script that will automatically reset your Twitter interests. All you need to do is paste this one-liner into your browser’s console, and it’ll clean up your feed slowly but surely, leaving you with a more tailored Twitter experience. In just a few minutes, your feed will be cleaning up your interest list regularly is crucial, and you can get back to what really matters.

How to Reset Your Twitter Feed:

1. Open the Twitter Interest page in your browser. https://x.com/settings/your_twitter_data/twitter_interests

2. Right-click anywhere on the page and select “Inspect” or press Ctrl+Shift+I (Windows/Linux) or Cmd+Opt+I (Mac).

3. Navigate to the “Console” tab.

4. Paste the following one-liner script:

const checkboxes = document.querySelectorAll('input[type=checkbox]'); let index = 0; (function uncheckNext() { if (index >= checkboxes.length) return; try { let waittime = 1000; if (checkboxes[index].checked) { checkboxes[index].click(); console.log(`Unchecked checkbox at index ${index}`); } else { console.log(`Checkbox at index ${index} is already unchecked`); waittime = 10; } index++; setTimeout(uncheckNext, waittime); } catch (error) { console.error('Error while unchecking checkbox:', error); setTimeout(uncheckNext, 5000); } })();

Twitter-Interest-List-Reset-Script.js

5. Hit Enter, and watch as the script works its magic!


With this quick and easy fix, you’ll have a clutter-free Twitter feed. Try it out, and enjoy a more focused social media experience!