ブラウザからタブを排除
bsahd.icon
firefoxの場合の手順です
1. 事前に固定されているタブがある場合は固定を解除した後閉じてください
やらないとめんどくさいことになります
2. 設定→一般→起動の「前回のウインドウとタブを開く」をオフにしてください
設定→一般→タブグループの項目をすべてオフにしてください
3. タイトルバーを表示してください
タブバーにアドオンをおいている場合はアクセスできなくなるので事前にメニューバー/アドレスバーに移動してください
code:userChrome.css
/* ボタンを小さくする */
toolbar .toolbarbutton-1 > .toolbarbutton-icon:not(#tabs-newtab-button image) {
width: 22px !important;
height: 22px!important;
}
toolbar .toolbarbutton-1 > .toolbarbutton-icon, toolbar .toolbarbutton-1 > .toolbarbutton-text, toolbar .toolbarbutton-1 > .toolbarbutton-badge-stack {
padding: 3px!important;
}
hbox#nav-bar-customization-target :where(toolbarbutton#reload-button, toolbarbutton#stop-button) > image.toolbarbutton-icon {
padding:3px!important;
margin-top: 1px;
}
/* タブを消す */
opacity: 0;
pointer-events: none;
}
visibility: collapse !important;
}
5. 再起動してください
6. メニューバーを表示させるといいです
ここから先はオプション
これからはタブの代わりにタスクバーを使用しましょう
タスクバーなら二段以上も行ける(windows11はできない)
windows11はマルチタスク能力を捨てた
タスクバーボタンを結合するを結合しないにしてください
できた! moeki.icon
ありがとうございますbsahd.icon