Skip to content

Instantly share code, notes, and snippets.

@trumbitta
Created September 4, 2020 13:43
Show Gist options
  • Save trumbitta/999685659eaf057d7fece9ad1ce8b4ef to your computer and use it in GitHub Desktop.
Save trumbitta/999685659eaf057d7fece9ad1ce8b4ef to your computer and use it in GitHub Desktop.
(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