Last active
May 13, 2022 12:46
-
-
Save cyco130/d96f678d41fd7acfe4ac6c4e01d2d173 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 () { | |
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