Skip to content

Instantly share code, notes, and snippets.

@cyco130
Last active May 13, 2022 12:46
Show Gist options
  • Save cyco130/d96f678d41fd7acfe4ac6c4e01d2d173 to your computer and use it in GitHub Desktop.
Save cyco130/d96f678d41fd7acfe4ac6c4e01d2d173 to your computer and use it in GitHub Desktop.
(function () {
const ticks = Array.from(
document.querySelectorAll("[aria-label='Verified account']")
)
.filter(
(tick) =>
tick?.parentElement?.parentElement?.children[0].textContent ===
"Elon Musk"
)
.forEach((tick) => {
const container =
tick?.parentElement?.parentElement?.parentElement?.parentElement
?.parentElement?.parentElement?.parentElement?.parentElement
?.parentElement?.parentElement?.parentElement?.parentElement
?.parentElement?.children[2];
if (container) {
container.textContent = "PAY ATTENTION TO ME!!";
}
});
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment