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 characters
// ==UserScript== | |
// @name Twitter-Promoted-Hider | |
// @description Removes posts marked as promoted from your feed | |
// @match *://twitter.com/* | |
// @run-at document-end | |
// ==/UserScript== | |
setInterval(() => { | |
const queryEls = document.querySelectorAll("[data-testid='placementTracking']"); | |
queryEls.forEach((el, key) => { |