Created
April 17, 2018 18:43
-
-
Save prendradjaja/5837d117b4fb6f0a6cad650305d277c9 to your computer and use it in GitHub Desktop.
Userstyle for hiding everything on Facebook except chat
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
body { | |
background-image: url(https://lh3.googleusercontent.com/vNRD8biNwF9fJN7VZBxi97h47noTxeE3jpKA308NrudcTtlHakyBDyLpA1EQJit9tX0JDEogxCRUMfg=w2048-h1536-rw-no); | |
background-size: cover; | |
overflow: hidden; | |
} | |
/* Things I want hidden */ | |
#pagelet_bluebar { | |
visibility: hidden; | |
} | |
#globalContainer { | |
visibility: hidden; | |
} | |
/* TODO: Facebook-post-as-chat thingy */ | |
/* I'm not sure if these identifiers ever change */ | |
#u_0_1q { /* notification popups */ | |
visibility: hidden; | |
} | |
/* Things that I do want visible. Of course, empty CSS rules do nothing, but it's nice to have these IDs written down */ | |
#pagelet_dock {} /* visible */ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment