By Shyam Verma·

How to Reset Your X (Twitter) Feed in 2026

How to Reset Your X (Twitter) Feed in 2026

A Simple Solution to Stay Focused

You’re scrolling through Twitter and 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.

Cleaning up your interest list regularly keeps your Twitter experience focused and productive. However, doing this manually is a tedious and time-consuming task, prone to errors.

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. In just a few minutes, your feed will be reset.

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. The script will start unchecking each interest one by one, logging its progress in the console.

Comments

Interested in Collaborating?

Whether it's a startup idea, a technical challenge, or a potential partnership—let's have a conversation.

20+
Years Experience
150K+
Websites Powered
2
Successful Exits
7x
Faster with AI