找回密码
 立即注册
楼主: pgain2004

[软件] Firefox更新推荐楼[12/6 扩展小更]

 火.. [复制链接]
     
发表于 2025-3-8 08:55 | 显示全部楼层
conanlm 发表于 2025-3-8 08:15
弱弱的问一下,移动版Firefox有什么方便的下载和更新的方法

我用apkpure管理

—— 来自 S1Fun
回复

使用道具 举报

发表于 2025-3-8 10:42 | 显示全部楼层
本帖最后由 wingmancn 于 2025-3-8 11:09 编辑

推荐一个:Youtube Times
https://addons.mozilla.org/en-US/firefox/addon/youtube-times/
显示youtube视频发布时间

可惜,chrome上面没找到对应好用的扩展,但可以用脚本实现:
安装https://greasyfork.org/zh-CN/scr ... 0%E6%97%A5%E6%9C%9F
更改123行:let options = { year: 'numeric', month: 'short', weekday: 'short', day: '2-digit', hour: '2-digit', minute: '2-digit', second: '2-digit', separator: '-' };
效果更佳
回复

使用道具 举报

     
发表于 2025-3-15 16:07 | 显示全部楼层
xx默认给我更新,打开一看扩展全给我禁用了
回复

使用道具 举报

     
发表于 2025-3-15 16:08 | 显示全部楼层
xx默认给我更新,打开一看扩展全给我禁用了
回复

使用道具 举报

     
发表于 2025-3-15 16:15 | 显示全部楼层
吃为是 发表于 2025-3-15 16:08
xx默认给我更新,打开一看扩展全给我禁用了

你是多久没更新了?
回复

使用道具 举报

     
发表于 2025-3-15 16:21 来自手机 | 显示全部楼层
本帖最后由 吃为是 于 2025-3-15 16:41 编辑
暁美ほむら 发表于 2025-3-15 16:15
你是多久没更新了?
换nightly版了,配置继承了继续用
回复

使用道具 举报

     
发表于 2025-3-20 20:35 | 显示全部楼层
回复

使用道具 举报

头像被屏蔽
     
发表于 2025-3-20 21:23 来自手机 | 显示全部楼层
最近 把我所有扩展都禁用了  然后 去官方扩展下载全部是扩展损坏  这怎么破?
回复

使用道具 举报

     
发表于 2025-3-20 23:26 | 显示全部楼层
firefox 垂直标签最新beta已经支持自动隐藏,类似edge。但是我推荐你依然使用css方式来实现自动隐藏要顺滑很多。
回复

使用道具 举报

     
发表于 2025-3-20 23:32 | 显示全部楼层
本帖最后由 暁美ほむら 于 2025-3-20 23:38 编辑

我更推荐大家使用sidebery+侧边栏自动隐藏css 来替代官方垂直标签,这个比任何浏览器的垂直标签功能还要强大

在这里找一个自己喜欢的美化样式:https://firefoxcss-store.github.io/



自动隐藏css:
  1. /* Source file https://github.com/MrOtherGuy/firefox-csshacks/tree/master/chrome/autohide_sidebar.css made available under Mozilla Public License v. 2.0
  2. See the above repository for updates as well as full license text. */

  3. /* Show sidebar only when the cursor is over it  */
  4. /* The border controlling sidebar width will be removed so you'll need to modify these values to change width */

  5. /* Note: If you want only Sideberry's sidebar to be auto-hidden, replace all instances of
  6.    #sidebar-box with #sidebar-box[sidebarcommand="_3c078156-979c-498b-8990-85f7987dd929_-sidebar-action"].
  7.    To find the sidebarcommand value for any other sidebar, open that sidebar and use Browser Toolbox to inspect it.
  8.    See: https://firefox-source-docs.mozilla.org/devtools-user/browser_toolbox/index.html
  9. */
  10. #sidebar-box{
  11.   --uc-sidebar-width: 3px;
  12.   --uc-sidebar-hover-width: 250px;
  13.   --uc-autohide-sidebar-delay: 0ms; /* Wait 0.6s before hiding sidebar */
  14.   --uc-autohide-transition-duration: 115ms;
  15.   --uc-autohide-transition-type: linear;
  16.   --browser-area-z-index-sidebar: 3;
  17.   position: relative;
  18.   min-width: var(--uc-sidebar-width) !important;
  19.   width: var(--uc-sidebar-width) !important;
  20.   max-width: var(--uc-sidebar-width) !important;
  21.   z-index: var(--browser-area-z-index-sidebar,3);
  22. }
  23. #sidebar-box[positionend]{ direction: rtl }
  24. #sidebar-box[positionend] > *{ direction: ltr }

  25. #sidebar-box[positionend]:-moz-locale-dir(rtl){ direction: ltr }
  26. #sidebar-box[positionend]:-moz-locale-dir(rtl) > *{ direction: rtl }

  27. #main-window[sizemode="fullscreen"] #sidebar-box{ --uc-sidebar-width: 1px; }

  28. #sidebar-splitter{ display: none }

  29. #sidebar-header{
  30.   overflow: hidden;
  31.   color: var(--chrome-color, inherit) !important;
  32.   padding-inline: 0 !important;
  33. }

  34. #sidebar-header::before,
  35. #sidebar-header::after{
  36.   content: "";
  37.   display: flex;
  38.   padding-left: 8px;
  39. }

  40. #sidebar-header,
  41. #sidebar{
  42.   transition: min-width var(--uc-autohide-transition-duration) var(--uc-autohide-transition-type) var(--uc-autohide-sidebar-delay) !important;
  43.   min-width: var(--uc-sidebar-width) !important;
  44.   will-change: min-width;
  45. }
  46. #sidebar-box:hover > #sidebar-header,
  47. #sidebar-box:hover > #sidebar{
  48.   min-width: var(--uc-sidebar-hover-width) !important;
  49.   transition-delay: 0ms !important;
  50. }

  51. .sidebar-panel{
  52.   background-color: transparent !important;
  53.   color: var(--newtab-text-primary-color) !important;
  54. }

  55. .sidebar-panel #search-box{
  56.   -moz-appearance: none !important;
  57.   background-color: rgba(249,249,250,0.1) !important;
  58.   color: inherit !important;
  59. }

  60. /* Add sidebar divider and give it background */

  61. #sidebar,
  62. #sidebar-header{
  63.   background-color: inherit !important;
  64.   border-inline: 1px solid rgb(80,80,80);
  65.   border-inline-width: 0px 1px;
  66. }

  67. #sidebar-box:not([positionend]) > :-moz-locale-dir(rtl),
  68. #sidebar-box[positionend] > *{
  69.   border-inline-width: 1px 0px;
  70. }

  71. /* Move statuspanel to the other side when sidebar is hovered so it doesn't get covered by sidebar */

  72. #sidebar-box:not([positionend]):hover ~ #appcontent #statuspanel{
  73.   inset-inline: auto 0px !important;
  74. }
  75. #sidebar-box:not([positionend]):hover ~ #appcontent #statuspanel-label{
  76.   margin-inline: 0px !important;
  77.   border-left-style: solid !important;
  78. }
复制代码



回复

使用道具 举报

     
发表于 2025-3-20 23:52 | 显示全部楼层
本帖最后由 暁美ほむら 于 2025-3-20 23:57 编辑

firefox 自带标签分组功能继续强化


本帖子中包含更多资源

您需要 登录 才可以下载或查看,没有账号?立即注册

×
回复

使用道具 举报

     
发表于 2025-3-21 01:28 | 显示全部楼层
sidebery确实比原生的好看,我推荐用这位的自动隐藏
https://github.com/christorange/VerticalFox
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

Archiver|手机版|小黑屋|上海互联网违法和不良信息举报中心|网上有害信息举报专区|962110 反电信诈骗|举报电话 021-62035905|Stage1st ( 沪ICP备13020230号-1|沪公网安备 31010702007642号 )

GMT+8, 2025-4-20 22:37 , Processed in 0.043758 second(s), 4 queries , Gzip On, Redis On.

Powered by Discuz! X3.5

© 2001-2025 Discuz! Team.

快速回复 返回顶部 返回列表