Skip to content

Latest commit

 

History

History
39 lines (27 loc) · 883 Bytes

Firefox 상단 탭 없애는 법.md

File metadata and controls

39 lines (27 loc) · 883 Bytes
  1. 아래 명령어 실행
ls ~/Library/Application\ Support/Firefox/Profiles/
  1. .default-release로 끝나는 경로 들어가서

    mkdir chrome && vi chrome/userChrome.css 
    
  2. userChrome.css 파일에 아래 내용 삽입

    @namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");
    
    #tabbrowser-tabs {
        visibility: collapse !important;
    }
    
    #nav-bar {
        border-top: 0px !important;
        margin-left: 200px;
        margin-top: -37px;
    } 
  3. firefox에서 url에 about:config 입력하고 들어가서

    toolkit.legacyUserProfileCustomizations.stylesheets 옵션 true로 변경

  4. firefox 재시작


참고