Skip to content

Instantly share code, notes, and snippets.

@mifas
Last active December 20, 2019 04:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mifas/b52de2539ac6c69320ec43cb395b4fb3 to your computer and use it in GitHub Desktop.
Save mifas/b52de2539ac6c69320ec43cb395b4fb3 to your computer and use it in GitHub Desktop.
Twitter Blur the images for privacy
article > div > div:nth-child(2) > div:nth-child(2) > div:nth-child(3) div[aria-label="Embedded video"] {
filter: blur(10px);
}
article > div > div:nth-child(2) > div:nth-child(2) > div:nth-child(3) div[aria-label="Embedded video"]:active {
filter: none;
}
article > div > div:nth-child(2) > div:nth-child(2) > div:nth-child(3) div[aria-label="Image"] {
filter: blur(10px);
}
a[href*="t.co"] {
filter: blur(10px);
}
a[href*="/photo"] {
filter: blur(10px);
}
a[href*="/i/events"] {
filter: blur(10px);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment