Skip to content

Instantly share code, notes, and snippets.

@svmihar
Created December 7, 2021 05:23
Show Gist options
  • Save svmihar/e89e1f2011c95594c8b30b83ecc23849 to your computer and use it in GitHub Desktop.
Save svmihar/e89e1f2011c95594c8b30b83ecc23849 to your computer and use it in GitHub Desktop.
Firefox no url bar, nor title ba

steps

  1. install simplefox
  2. add new line in the userChrome.css
@namespace url(http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul);

#navigator-toolbox {
    height: 0px !important;
    min-height: 0px !important;
    overflow: hidden !important;
}

#navigator-toolbox:focus,
#navigator-toolbox:focus-within,
#navigator-toolbox:active {
    height: auto !important;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment