• @simo97
    link
    9
    edit-2
    1 year ago

    It is a file / folder that, when enabled, allow a user to customize the interface of Firefox.

    For example, I use tree style tabs, so my tabs are on the right. To remove the standard tab bar, I used the userChrome.css.

    /* hides the native tabs */
    #TabsToolbar { visibility: collapse !important; }
    
    #sidebar-header {
      visibility: collapse !important;
    }
    
    • @Krompus
      link
      31 year ago

      OP linked a wiki article that explains it in depth.