Created
November 29, 2022 19:48
-
-
Save wesbos/0e7a22725f2efdf43fb19cfd10d1dbe8 to your computer and use it in GitHub Desktop.
Revisions
-
wesbos created this gist
Nov 29, 2022 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,18 @@ // ==UserScript== // @name Remove Bot Tags // @version 1 // @grant none // ==/UserScript== function nukeEm() { console.log('Nuke em!'); Array.from(document.querySelectorAll('a[href*="SaveTo"], a[href*="memdotai"]')) .map(link => { // Tweet deck / Twitter return link.closest('.stream-item') || link.closest('article') }) .forEach(item => item.style.display = 'none'); } setInterval(nukeEm, 1000);