Last active
October 3, 2018 19:16
-
-
Save stevenqzhang/35c26c2862d8ccc7373f1e1ae5eb3431 to your computer and use it in GitHub Desktop.
facebook css customizations
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
/* Copy paste from https://gist.github.com/stevenqzhang/35c26c2862d8ccc7373f1e1ae5eb34318*/ | |
/*use https://chrome.google.com/webstore/detail/user-css/okpjlejfhacmgjkmknjhadmkdbcldfcb?hl=en* to map this to facebook.com/ | |
/*Hide message and notification count -> force me to go to messenger.com and facebook.com/notifications on regular basis instead*/ | |
.jewelCount { | |
display: none; | |
} | |
/* Hide like notifications: https://github.com/zerobase/fb_hide_like_notifs/blob/master/content_script.css*/ | |
._33c[data-gt*='"notif_type":"like"'], | |
._33c[data-gt*='"notif_type":"like_tagged"'], | |
._33c[data-gt*='"notif_type":"page_new_likes"'], | |
._33c[data-gt*='"notif_type":"open_graph_action_like"'] | |
{ | |
display:none !important; | |
} |
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
/* hides unread count | |
.bsU { | |
visibility: hidden; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment