移动端呢
试了不行 和tst比如何
—— 来自 鹅球 v3.1.88.3 等它完善前还是先用第三方吧… 其实对于火狐来说直接标签栏自动隐藏,然后查询什么直接交给标签管理组这类扩展是最好的。
什么地址栏也可以自动隐藏, 借楼问一下,火狐怎么锁定界面布局? chrome系的很多按钮比如刷新 按右键以后是不同的功能,火狐就是跳出一个调整界面布局的按钮,强迫症十分的不爽。 本帖最后由 暁美ほむら 于 2024-8-12 17:33 编辑
muyefytte 发表于 2024-8-12 15:14
借楼问一下,火狐怎么锁定界面布局? chrome系的很多按钮比如刷新 按右键以后是不同的功能,火狐就是跳出一 ...
addmenu uc脚本自己去改
或者看一下这个https://github.com/benzBrake/Fir ... meJS/miscMods.uc.js
反正你火狐任何功能什么的你都可以通过uc脚本,CSS以及about:config里的一些参数修改实现。
最近 floorp 在 firefox 社区挺火的。各种奇怪的功能都打包好了。比如垂直分页,标签睡眠,垂直标签啥的。 那准备换回FF了,Edge在Native Wayland下Drag&Drop导致无响应的Bug还没修..明明Chromium几个月前就修了 心头小鹿撞 发表于 2024-8-12 18:22
最近 floorp 在 firefox 社区挺火的。各种奇怪的功能都打包好了。比如垂直分页,标签睡眠,垂直标签啥的。 ...
现在就等内核版本更新到128 Esr了 能放页面右边吗
edge不知道为啥只能左边 我的火狐更新到129之后 tree style tab的标签组挪到另一个窗口里的时候就变成复制而不是移动了,难道也是这个原因? 火狐102+版本如何能展开平铺书签,至今一直是个大难题 本帖最后由 暁美ほむら 于 2024-8-12 21:12 编辑
baiducaonima 发表于 2024-8-12 20:53
火狐102+版本如何能展开平铺书签,至今一直是个大难题
https://raw.githubusercontent.co ... BMMultiColumn.uc.js
baiducaonima 发表于 2024-8-12 20:53
火狐102+版本如何能展开平铺书签,至今一直是个大难题
你截下图看一下 本帖最后由 baiducaonima 于 2024-8-13 16:19 编辑
暁美ほむら 发表于 2024-8-13 13:41
你截下图看一下
就是102之前的版本,只用一个css脚本就能实现这个点击展开箭头平铺书签效果,现在的直接点击不行通
还有就是129版本uc.js怎么生效,更新129没反应
#bookmarksMenuPopup {width: 320px !important}
.menupopup-arrowscrollbox *{
display: grid;
grid-auto-flow: column;
grid-template-rows: repeat(38, auto);
}
https://p.sda1.dev/18/0be367a66f4dc6198b82121e0a209cb1/CMP_20240813154901449.jpg。
baiducaonima 发表于 2024-8-13 15:54
就是102之前的版本,只用一个css脚本就能实现这个点击展开箭头平铺书签效果,现在的直接点击不行通
还有 ...
更新下UC脚本环境 baiducaonima 发表于 2024-8-13 15:54
就是102之前的版本,只用一个css脚本就能实现这个点击展开箭头平铺书签效果,现在的直接点击不行通
还有 ...
或者你试下这个CSS脚本
多行标签+自动隐藏
/* Source file https://github.com/MrOtherGuy/firefox-csshacks/tree/master/chrome/multi-row_bookmarks.css made available under Mozilla Public License v. 2.0
See the above repository for updates as well as full license text. */
/* Makes bookmarks toolbar span multiple rows */
#PersonalToolbar{
--multirow-bmb-n-rows: 3; /* Control how many rows are shown before scrolling */
--multirow-bmb-row-margin: 2px; /* Control how much spacing is between rows */
max-height: none !important;
}
:root :where(#PersonalToolbar){
height: unset !important;
}
#PlacesToolbar > hbox:not(#PlacesToolbarDropIndicatorHolder){
display: block;
width: 100vw;
}
#PlacesToolbarItems{
display: flex;
flex-wrap: wrap;
/* --uc-bm-padding is defined in autohide_bookmarks_toolbar.css */
max-height: calc(var(--multirow-bmb-n-rows) * (4px + 1em + (2 * (var(--multirow-bmb-row-margin) + var(--uc-bm-padding,var(--bookmark-block-padding)))))) !important;
overflow-y:auto;
scrollbar-color: var(--lwt-accent-color) var(--toolbar-bgcolor);
scrollbar-gutter: stable;
scrollbar-width: thin;
}
/* Hide the all-bookmarks button */
#PlacesChevron{ display: none }
/* Add some spacing between rows */
#PlacesToolbarItems > .bookmark-item{
margin: var(--multirow-bmb-row-margin) 3px !important;
visibility: visible !important; /* Just in case they would be hidden for some reason */
}
/* Source file https://github.com/MrOtherGuy/firefox-csshacks/tree/master/chrome/autohide_bookmarks_toolbar.css made available under Mozilla Public License v. 2.0
See the above repository for updates as well as full license text. */
#PersonalToolbar{
--uc-bm-height: 20px; /* Might need to adjust if the toolbar has other buttons */
--uc-bm-padding: 4px; /* Vertical padding to be applied to bookmarks */
--uc-autohide-toolbar-delay: 600ms; /* The toolbar is hidden after 0.6s */
/* 0deg = "show" ; 90deg = "hide" ;Set the following to control when bookmarks are shown */
--uc-autohide-toolbar-focus-rotation: 0deg; /* urlbar is focused */
--uc-autohide-toolbar-hover-rotation: 0deg; /* cursor is over the toolbar area */
}
:root #PersonalToolbar{ --uc-bm-padding: 7px }
#PersonalToolbar:not(){
position: relative;
margin-bottom: calc(-1px - var(--uc-bm-height) - 2 * var(--uc-bm-padding));
transform: rotateX(90deg);
transform-origin: top;
transition: transform 135ms linear var(--uc-autohide-toolbar-delay) !important;
z-index: 1;
/* The following properties should allow the themes with trasparent toolbars to work */
background-color: transparent !important;
background-repeat: no-repeat,no-repeat,var(--lwt-background-tiling);
/* y position will be wrong if menubar is enabled... */
--uc-bg-y: calc(-2 * (var(--tab-block-margin) + var(--toolbarbutton-inner-padding) + var(--toolbarbutton-outer-padding)) - var(--tab-min-height) - 24px - var(--bookmark-block-padding));
background-position: top left,top left,var(--lwt-background-alignment,top left);
background-position-y:top,top,var(--uc-bg-y),var(--uc-bg-y),var(--uc-bg-y);
background-image: var(--toolbar-bgimage,linear-gradient(transparent,transparent)), linear-gradient(var(--toolbar-bgcolor),var(--toolbar-bgcolor)),var(--lwt-header-image,var(--lwt-additional-images)) !important;
}
:root #PersonalToolbar{
--toolbarbutton-outer-padding: 1px !important;
}
#PlacesToolbarItems > .bookmark-item,
#OtherBookmarks,
#PersonalToolbar > #import-button{
padding-block: var(--uc-bm-padding) !important;
}
#nav-bar:focus-within + #PersonalToolbar{
transition-delay: 100ms !important;
transform: rotateX(var(--uc-autohide-toolbar-focus-rotation,0));
}
#navigator-toolbox:is(:hover,:focus-within){
border-bottom-color: transparent !important;
}
#navigator-toolbox:hover > #PersonalToolbar{
transition-delay: 100ms !important;
transform: rotateX(var(--uc-autohide-toolbar-hover-rotation,0));
}
#navigator-toolbox:hover > #nav-bar:focus-within + #PersonalToolbar {
transform: rotateX(0);
}
/* Uncomment to enable compatibility for multi-row_bookmarks.css */
/* This would break buttons placed in the toolbar but that is likely not happening if you are using multi-row setup*/
/*
#PersonalToolbar:not(){
min-height: 0 !important;
margin-bottom: 0;
height: 0;
overflow-y: visible !important;
z-index: 2;
padding-inline: 0 !important;
}
#personal-bookmarks{
background: inherit;
height: min-content;
}
#PlacesToolbarDropIndicatorHolder{
pointer-events: none !important;
}
*/
页:
[1]