首页 >> Firefox 主题外观
标签页计数器 阅读:649回复:2
方式一:
扩展:https://addons.mozilla.org/zh-CN/firefox/addon/tab-counter-icon/ 计算数量=固定标签页数量+非固定标签页数量 缺点:字体有点小看不清 方式二: 样式 /*==标签计数==*/ #main-window {counter-reset: tabs;} .tabbrowser-tab:not(:-moz-any([pinned],[concealed])) {counter-increment: tabs;} #alltabs-button {visibility: visible!important;} #alltabs-button:after { content: counter(tabs); font-size: 12pt !important; display: -moz-box;} #alltabs-button > :-moz-any(label, image) {display: none;} #alltabs-button menuitem {max-width: 200px !important;} 缺点:只计算非固定标签页数量 优点:字体大小可调,比上面的扩展看着方便 更新:20240927 把样式中的 #alltabs-button > :-moz-any(label, image) {display: none;} 改为 #alltabs-button >*> :is(label,image) {display: none;} :-moz-any已经被:is取代了 |