Last active
October 26, 2023 15:37
-
-
Save rauschma/caedecb363ccaf87823266b825436ae2 to your computer and use it in GitHub Desktop.
This file contains 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
const primaryColumn = document.querySelector('div[data-testid="primaryColumn"]'); | |
document.body.innerHTML = ''; | |
document.body.append(primaryColumn); | |
// Per-tweet controls | |
for (const ele of document.querySelectorAll('div[role="group"]')) { | |
ele.remove(); | |
} | |
// Reply widget | |
document.querySelector('div[role="progressbar"]').nextSibling.remove(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment