Guide  When you purchase through links on our site, we may earn an affiliate commission. Here’s how it works.

Turn off Topic Suggestions and Interests at Twitter with this handy script

Twitter interests list

One morning while checking out a link to a tweet directly on Twitter, it showed I had an unread notification, but this was not so on Tweeten. Intrigued, I went and had a look and saw that Twitter was suggesting for me to follow topics on "Manchester United FC"... huh? As a Portsmouth FC fan that follows the official club Twitter handle as well as several people affiliated with Pompey (including the owner of the club) it makes me wonder why Twitter is suggesting a football club I clearly have no interest in. In fact, the whole Topic Suggestions feature is annoying, I keep dismissing them and more come each day, whatever happened to just letting users sign up to lists or search for interests themselves?

Topics initially launched back at the end of 2019 as a means to opt into topics of interest; it plugs into "Interests", which is a tracking feature that tries to make sense of your behavior when interacting with Twitter and then builds a profile of what you're most likely interested in, which in turn then suggests those interests as Topics to follow.

Twitter interests list

Anyway, there is a way to turn them off thanks to some code uploaded to Github that you can run in the browser dev tools console (which was spotted via Reddit), but it requires a lot of patience, and you will also be forced to uncheck new "Interests", or should I say "Topic Suggestions", that get added to the list every once in a while.

Once you are on that page you will see a long list of checked interests, they will all be enabled unless you have already manually disabled some Interests.

  • On your keyboard hit the F12 key, which will open dev tools in Edge, Chrome and Firefox. You can also right-click anywhere on the page and select "Inspect"
  • Switch to the Console tab in dev tools
  • Where you see a new line with > paste the following code and hit the Enter key to run it.

var timer=1000; document.querySelectorAll( "div > input[type='checkbox']:checked" ).forEach((interest) => { setTimeout( function(){interest.click(); interest.scrollIntoView()},timer ); timer+=2000; });

  • Be aware that after a while the page will say "Twitter is over capacity... " but it will look like it is still unchecking list items, it isn't.
  • Manually stop the script process by reloading the page,
  • Wait a few minutes and then restart the script.
  • You may have to repeat this process four or five times.

On Github, the original code has a timer set of 100, but upon testing and reading the comments I had more success with fewer timeouts by upping it to 1000.

As you can see in our video, I was already quite a ways into running it (by this time I had to restart it for the fourth time) before getting a "Twitter is over capacity..." error. To be clear, the way this page is set up also creates the overcapacity error if you manually uncheck each line without using the script. The page reloads in the background to save the preference, and the further down the page you get the more likely it is that it will fail.

So our suggestion is to let the script run with an ample timer like 1000 or more, and when it starts failing, manually reload the page and wait a few minutes before pasting the script in again and running it in the console.

It is like certain platforms enjoy burying settings or make them incredibly hard to find and disable. What happened to when tech was supposed to add value to our lives? Now it seems like it just makes for an annoying garbagefest to deal with.

Anyway, this won't be for everyone, but if you do decide to use it, let us know how long it took you to get everything unchecked. In our testing, it took us one hour and fifteen minutes from start to finish, including the waiting to run it again in between. Oh, and you can still follow Topics by typing in something of interest on Twitter and then electing to follow the applicable Topic.

Report a problem with article
Fall Guys logo over a screenshot of the game
Next Article

Fall Guys: Ultimate Knockout hits Xbox Series X|S and Xbox One this summer

Windows 10 21H1 Insider Preview image with black laptop and pink background
Previous Article

How to start testing Windows 10 version 21H1

Join the conversation!

Login or Sign Up to read and post a comment.

16 Comments - Add comment