Skip to content

Instantly share code, notes, and snippets.

@azdanov
Created February 21, 2025 07:47
Show Gist options
  • Save azdanov/f28bd6998ac67b015f5bc993132579d2 to your computer and use it in GitHub Desktop.
Save azdanov/f28bd6998ac67b015f5bc993132579d2 to your computer and use it in GitHub Desktop.
UserStyle to hide Facebook navigation bar
/* ==UserStyle==
@name Facebook Navigation Hide
@namespace github.com/openstyles/stylus
@version 1.0.0
@description Hides Facebook navigation bar
@author You
@match *://www.facebook.com/*
@license MIT
==/UserStyle== */
@-moz-document domain("facebook.com") {
/* Hide navigation */
div[aria-label="Facebook"][role="navigation"] {
display: none !important;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment