引用
@leochum (4楼,楼中楼)
怎么显示出一共开了多少标签页的?还有扩展图标都不错啊
———————————————————————————
@namespace url(
http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul);
@-moz-document url(chrome://browser/content/browser.xul) {
/*==标签计数==*/
#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: 10pt !important;
display: -moz-box;}
#alltabs-button > :-moz-any(label, image) {display: none;}
#alltabs-button menuitem {max-width: 200px !important;}
}