toolkit.legacyUserProfileCustomizations.stylesheets → true
userChrome.cssを読み込むようにする
xpinstall.signatures.required → false
非署名のアドオンのインストールを許可する
1passwordのアドオン追加
https://1password.com/browsers/firefox/
追加したアドオン
https://addons.mozilla.org/ja/firefox/collections/14157578/Firefox-v61-0-2/
userChrome.cssの中身
#TabsToolbar {
visibility: collapse;
}
/* Recreates the basic functionality of the popular Roomy Bookmarks Toolbar add-on:
Hide bookamrks bar items label text, show on hover. */
.bookmark-item > .toolbarbutton-text {
margin-top: -1px !important;
}
.bookmark-item:not(:hover):not([open="true"]) > .toolbarbutton-text {
display: none !important;
}
#PlacesToolbarItems > .bookmark-item:not(:hover):not([open="true"]) > .toolbarbutton-icon[label]:not([label=""]) {
margin-inline-end: 0px !important;
}
/* hide names on the Bookmarks Toolbar */
#PlacesToolbarItems > .bookmark-item > .toolbarbutton-text {
display:none !important;
}
/* Reduce space between bookmarks and decrease bookmarks icon */
.bookmark-item > .toolbarbutton-icon {
height: 16px !important;
width: 16px !important;
margin:0px !important;
padding:0px !important;
}
その他
FireFoxのabout:configを設定して高速化しよう!
メモリキャッシュの量を変更する
-1を設定することでFireFoxで勝手に数値を決めてくれますが、その容量があまりにも少ないので決め打ちで設定していきます。
browser.cache.memory.capacity → 233016
上記はメインメモリが8GB以上の場合です。
RAM容量と設定値は以下を参照し、自分の環境にあった設定をしてください。
PCのRAM容量 設定値
1GB 36864
2GB 73728
4GB 147456
8GB 233016
ここの数値はブログによって色々な値を推奨していますが、FireFoxのソースを確認したところ233016以上の値は変数に代入する所で桁あふれするため上記の値を参考にしてください。