Last active
December 20, 2019 04:47
-
-
Save mifas/b52de2539ac6c69320ec43cb395b4fb3 to your computer and use it in GitHub Desktop.
Twitter Blur the images for privacy
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
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