Skip to content

Instantly share code, notes, and snippets.

@Zeko369
Created January 17, 2023 12:15
Show Gist options
  • Select an option

  • Save Zeko369/06cff7c36057d958c2d0e60db91ceb89 to your computer and use it in GitHub Desktop.

Select an option

Save Zeko369/06cff7c36057d958c2d0e60db91ceb89 to your computer and use it in GitHub Desktop.
/* Hide "Home" */
div[aria-label="Home timeline"] > :first-child > div > div:first-child {
display: none;
}
/* Hide "For you / Followoing" */
div[aria-label="Home timeline"] > :first-child > div > div:nth-child(2) {
display: none;
}
/* Hide "Both bars" */
div[aria-label="Home timeline"] > :first-child {
display: none;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment