Created
September 4, 2020 13:43
-
-
Save trumbitta/999685659eaf057d7fece9ad1ce8b4ef to your computer and use it in GitHub Desktop.
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
(function () { | |
for (const text of document.querySelectorAll("[data-testid='tweet'] div:nth-child(2) > div:nth-child(2) > div:nth-child(2) > div > span")) { | |
if (text.textContent) { | |
text.textContent = "IMHO, " + text.textContent; | |
} | |
} | |
})() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment