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

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

 火.. [复制链接]
     
发表于 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
回复

使用道具 举报

发表于 2025-4-26 13:13 | 显示全部楼层
泥潭新地址如果用tridactyl的话重定向不需要其他扩展

  1. autocmd BeforeRequest https://bbs.saraba1st.com/* (details) => {let url = new URL(details.url); url.hostname = "stage1st.com"; return {redirectUrl: url + ""}; }
复制代码


不用的话不少其他扩展也支持类似的重定向功能
回复

使用道具 举报

     
发表于 2025-4-27 10:50 | 显示全部楼层
试了下Infinity 新标签页 (Pro)老的xpi还能用,还有其他类似的扩展替代吗
回复

使用道具 举报

     
 楼主| 发表于 2025-4-28 06:52 来自手机 | 显示全部楼层
mashirotan 发表于 2025-4-27 10:50
试了下Infinity 新标签页 (Pro)老的xpi还能用,还有其他类似的扩展替代吗

非pro那个你登一下账号同步,就能还原到pro那个布局
现在其实不是没有类似的,而是新的那批很多看着就不敢用……稍微多人一点的wetab又没上Firefox
回复

使用道具 举报

发表于 2025-4-28 15:16 来自手机 | 显示全部楼层
iceraven 可以去掉地址栏的 Home 键了
回复

使用道具 举报

     
发表于 2025-5-28 14:57 | 显示全部楼层
本帖最后由 orca 于 2025-5-28 14:58 编辑

User-Agent Switcher and Manager,终于更了一下,UA版本跟上最新的了
回复

使用道具 举报

     
发表于 2025-5-28 18:20 | 显示全部楼层
pgain2004 发表于 2025-4-28 06:52
非pro那个你登一下账号同步,就能还原到pro那个布局
现在其实不是没有类似的,而是新的那批很多看着就不 ...

firefox 直接把https://wetab.link/ 设置成新标签页主页就行

所谓的wetab扩展就只是调用https://wetab.link/ 页面而已
回复

使用道具 举报

     
发表于 2025-5-28 19:33 来自手机 | 显示全部楼层
firefox 官方ftp下载

https://ftp.mozilla.org/pub/fenix/releases/
回复

使用道具 举报

     
发表于 2025-5-29 09:45 来自手机 | 显示全部楼层
之前靠user agent用ios端来绕过单位内网需要windows安装控件,更新后失效了

—— 来自 Xiaomi 22041211AC, Android 12, 鹅球 v3.5.99-alpha
回复

使用道具 举报

     
发表于 2025-5-29 16:32 | 显示全部楼层
pgain2004 发表于 2025-4-28 06:52
非pro那个你登一下账号同步,就能还原到pro那个布局
现在其实不是没有类似的,而是新的那批很多看着就不 ...

用itab了,去官网下载就行
edge上用的人不少,firefox应用市场没上
回复

使用道具 举报

     
 楼主| 发表于 2025-5-29 21:56 | 显示全部楼层
mashirotan 发表于 2025-5-29 16:32
用itab了,去官网下载就行
edge上用的人不少,firefox应用市场没上

去两边的官网看了一下,看来WeTab实际上就是Infinity新标签页团队的,而iTab则是星愿浏览器团队的
回复

使用道具 举报

     
发表于 2025-5-29 22:21 | 显示全部楼层
pgain2004 发表于 2025-5-29 21:56
去两边的官网看了一下,看来WeTab实际上就是Infinity新标签页团队的,而iTab则是星愿浏览器团队的 ...

还是喜欢Infinity 这种的,现在新标签页太花里胡哨了
回复

使用道具 举报

     
发表于 2025-5-29 22:33 | 显示全部楼层
firefox 下强行安装wetbab

先安装 CRX Installer 这个扩展插件

然后在谷歌商店去按照WeTab 就行

效果如下



本帖子中包含更多资源

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

×
回复

使用道具 举报

     
发表于 2025-5-29 23:01 | 显示全部楼层
firefox在plasma浅色模式下,还原按钮(restore down)呈现白色,是通病吗?



深色模式下没问题。

本帖子中包含更多资源

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

×
回复

使用道具 举报

     
发表于 2025-5-29 23:58 | 显示全部楼层
firefox 139.0  nv vsr无法使用临时解决方案

gfx.webrender.compositor.force-enabled 设置为true

然后等官方139.0.1修复()
回复

使用道具 举报

     
发表于 2025-5-30 00:52 来自手机 | 显示全部楼层
obiy 发表于 2025-5-29 23:01
firefox在plasma浅色模式下,还原按钮(restore down)呈现白色,是通病吗?



nightly没有这个问题,换过去了(不等更新了)
回复

使用道具 举报

发表于 2025-5-30 21:24 来自手机 | 显示全部楼层
mozilla 要停止pocket
回复

使用道具 举报

     
发表于 2025-6-3 21:28 | 显示全部楼层

B站无限记录扩展,我觉得挺实用的,可以突破B站历史记录的限制。不过目前有点小bug不能自动同步,要手动。

本帖子中包含更多资源

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

×
回复

使用道具 举报

     
发表于 2025-6-9 21:07 | 显示全部楼层
没装sidebery,侧边栏背景颜色能用userChrome.css改吗,尝试写了
  1. #sidebar-box { background-color: #778899 !important; }
复制代码

不起作用

本帖子中包含更多资源

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

×
回复

使用道具 举报

     
发表于 2025-6-9 21:10 | 显示全部楼层
yoshiron 发表于 2025-6-9 21:07
没装sidebery,侧边栏背景颜色能用userChrome.css改吗,尝试写了
不起作用

奇怪,怎么多了张没见过的图片,编辑里也没看到
回复

使用道具 举报

     
发表于 2025-6-9 21:37 | 显示全部楼层
yoshiron 发表于 2025-6-9 21:10
奇怪,怎么多了张没见过的图片,编辑里也没看到

解决了,不是sidebar-box而是sidebar-main
回复

使用道具 举报

发表于 2025-6-12 17:21 | 显示全部楼层
检测到潜在的安全威胁 并因 www.google.com 要求安全连接而没有继续 怎么搞 百分不更新打算换回来,一上来就碰到这个
回复

使用道具 举报

     
 楼主| 发表于 2025-6-12 17:32 来自手机 | 显示全部楼层
f0rest 发表于 2025-6-12 17:21
检测到潜在的安全威胁 并因 www.google.com 要求安全连接而没有继续 怎么搞 百分不更新打算换回来,一上来 ...

什么情况下遇到的,有截图吗?
然后话说还有两条路子,一条是先问AI或者搜搜相关案例,另一条是试试catxp之类的同类chromium浏览器,后者也还行的
回复

使用道具 举报

     
发表于 2025-6-16 18:49 来自手机 | 显示全部楼层
本帖最后由 我就再氪一单 于 2025-6-16 18:52 编辑

请教一下,有什么插件能高亮显示正在播放声音或者视频的标签页?只有一个喇叭标实在不是很明显,每天回家把今晚要看的视频开一排,切出去黑听一会再回来找刚才开的是哪个页面费老鼻子劲儿了
或者能有一键回到正在播放视频的页面功能的也行

—— 来自 鹅球 v3.3.96
回复

使用道具 举报

     
发表于 2025-6-25 10:45 | 显示全部楼层
141.0把字体改了
回复

使用道具 举报

     
 楼主| 发表于 2025-6-25 12:08 来自手机 | 显示全部楼层

changelog里没提到相关改动啊
回复

使用道具 举报

     
发表于 2025-6-25 12:17 | 显示全部楼层
pgain2004 发表于 2025-6-25 12:08
changelog里没提到相关改动啊

变成这个了

本帖子中包含更多资源

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

×
回复

使用道具 举报

     
发表于 2025-6-25 19:53 | 显示全部楼层

自己改一下就行
回复

使用道具 举报

发表于 2025-6-25 21:16 | 显示全部楼层
f0rest 发表于 2025-6-12 17:21
检测到潜在的安全威胁 并因 www.google.com 要求安全连接而没有继续 怎么搞 百分不更新打算换回来,一上来 ...

看起来像是dns被污染了?
回复

使用道具 举报

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

本版积分规则

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

GMT+8, 2025-7-2 01:57 , Processed in 0.096187 second(s), 6 queries , Gzip On, Redis On.

Powered by Discuz! X3.5

© 2001-2025 Discuz! Team.

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