Skip Navigation
/kbin meta @kbin.social auhu @kbin.social

Is there a way to filter out a specific word from my feed? Like a tampermonkey script or something?

Sorry if this is the wrong place to ask

5

You're viewing a single thread.

5 comments
  • I'm working on one. Currently I have Enough about Reddit already which filters out reddit-related words. If you're comfortable editing a script, you could add your own words to the blacklist.

    • It works great! I changed the blacklist.

      Not sure if it's only me, but I got undefined errors sometimes so I added this spaghetti before the const description declaration:

      if (!article.getElementsByClassName("short-desc")[0]) return;

      if that helps anyone in the future