MeursaulT 发表于 2025-3-8 08:55

conanlm 发表于 2025-3-8 08:15
弱弱的问一下,移动版Firefox有什么方便的下载和更新的方法

我用apkpure管理

—— 来自 S1Fun

wingmancn 发表于 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/scripts/493024-%E4%BB%A5-yyyy-mm-dd-%E6%98%BE%E7%A4%BA-youtube-%E7%9A%84%E8%A7%86%E9%A2%91%E4%B8%8A%E4%BC%A0%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

有用过adguard 的网友么?
https://addons.mozilla.org/zh-CN/firefox/addon/adguard-adblocker/
https://github.com/AdguardTeam/AdguardBrowserExtension/releases

这个扩展和软件版的有什么区别?
https://lizhi.shop/p/AdGuard
https://sspai.com/item/20

瓦格雷 发表于 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:
/* Source file https://github.com/MrOtherGuy/firefox-csshacks/tree/master/chrome/autohide_sidebar.css made available under Mozilla Public License v. 2.0
See the above repository for updates as well as full license text. */

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

/* Note: If you want only Sideberry's sidebar to be auto-hidden, replace all instances of
   #sidebar-box with #sidebar-box.
   To find the sidebarcommand value for any other sidebar, open that sidebar and use Browser Toolbox to inspect it.
   See: https://firefox-source-docs.mozilla.org/devtools-user/browser_toolbox/index.html
*/
#sidebar-box{
--uc-sidebar-width: 3px;
--uc-sidebar-hover-width: 250px;
--uc-autohide-sidebar-delay: 0ms; /* Wait 0.6s before hiding sidebar */
--uc-autohide-transition-duration: 115ms;
--uc-autohide-transition-type: linear;
--browser-area-z-index-sidebar: 3;
position: relative;
min-width: var(--uc-sidebar-width) !important;
width: var(--uc-sidebar-width) !important;
max-width: var(--uc-sidebar-width) !important;
z-index: var(--browser-area-z-index-sidebar,3);
}
#sidebar-box{ direction: rtl }
#sidebar-box > *{ direction: ltr }

#sidebar-box:-moz-locale-dir(rtl){ direction: ltr }
#sidebar-box:-moz-locale-dir(rtl) > *{ direction: rtl }

#main-window #sidebar-box{ --uc-sidebar-width: 1px; }

#sidebar-splitter{ display: none }

#sidebar-header{
overflow: hidden;
color: var(--chrome-color, inherit) !important;
padding-inline: 0 !important;
}

#sidebar-header::before,
#sidebar-header::after{
content: "";
display: flex;
padding-left: 8px;
}

#sidebar-header,
#sidebar{
transition: min-width var(--uc-autohide-transition-duration) var(--uc-autohide-transition-type) var(--uc-autohide-sidebar-delay) !important;
min-width: var(--uc-sidebar-width) !important;
will-change: min-width;
}
#sidebar-box:hover > #sidebar-header,
#sidebar-box:hover > #sidebar{
min-width: var(--uc-sidebar-hover-width) !important;
transition-delay: 0ms !important;
}

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

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

/* Add sidebar divider and give it background */

#sidebar,
#sidebar-header{
background-color: inherit !important;
border-inline: 1px solid rgb(80,80,80);
border-inline-width: 0px 1px;
}

#sidebar-box:not() > :-moz-locale-dir(rtl),
#sidebar-box > *{
border-inline-width: 1px 0px;
}

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

#sidebar-box:not():hover ~ #appcontent #statuspanel{
inset-inline: auto 0px !important;
}
#sidebar-box:not():hover ~ #appcontent #statuspanel-label{
margin-inline: 0px !important;
border-left-style: solid !important;
}



暁美ほむら 发表于 2025-3-20 23:52

本帖最后由 暁美ほむら 于 2025-3-20 23:57 编辑

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


GALLADE 发表于 2025-3-21 01:28

sidebery确实比原生的好看,我推荐用这位的自动隐藏
https://github.com/christorange/VerticalFox

Hieda 发表于 2025-4-26 13:13

泥潭新地址如果用tridactyl的话重定向不需要其他扩展

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

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

mashirotan 发表于 2025-4-27 10:50

试了下Infinity 新标签页 (Pro)老的xpi还能用,还有其他类似的扩展替代吗

pgain2004 发表于 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 键了

orca 发表于 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/

mashirotan 发表于 2025-5-29 09:45

之前靠user agent用ios端来绕过单位内网需要windows安装控件,更新后失效了

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

mashirotan 发表于 2025-5-29 16:32

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

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

pgain2004 发表于 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 就行

效果如下



obiy 发表于 2025-5-29 23:01

firefox在plasma浅色模式下,还原按钮(restore down)呈现白色,是通病吗?



深色模式下没问题。

暁美ほむら 发表于 2025-5-29 23:58

firefox 139.0nv vsr无法使用临时解决方案

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

然后等官方139.0.1修复()

obiy 发表于 2025-5-30 00:52

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




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

飞叶 发表于 2025-5-30 21:24

mozilla 要停止pocket

beckuse 发表于 2025-6-3 21:28


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

yoshiron 发表于 2025-6-9 21:07

没装sidebery,侧边栏背景颜色能用userChrome.css改吗,尝试写了#sidebar-box { background-color: #778899 !important; }
不起作用

yoshiron 发表于 2025-6-9 21:10

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

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

yoshiron 发表于 2025-6-9 21:37

yoshiron 发表于 2025-6-9 21:10
奇怪,怎么多了张没见过的图片,编辑里也没看到

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

f0rest 发表于 2025-6-12 17:21

检测到潜在的安全威胁 并因 www.google.com 要求安全连接而没有继续 怎么搞 百分不更新打算换回来,一上来就碰到这个

pgain2004 发表于 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

gameselect 发表于 2025-6-25 10:45

141.0把字体改了

pgain2004 发表于 2025-6-25 12:08

gameselect 发表于 2025-6-25 10:45
141.0把字体改了

changelog里没提到相关改动啊

gameselect 发表于 2025-6-25 12:17

pgain2004 发表于 2025-6-25 12:08
changelog里没提到相关改动啊
变成这个了

暁美ほむら 发表于 2025-6-25 19:53

gameselect 发表于 2025-6-25 12:17
变成这个了

自己改一下就行

蜇灵 发表于 2025-6-25 21:16

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

看起来像是dns被污染了?
页: 37 38 39 40 41 42 43 44 45 46 [47] 48
查看完整版本: Firefox更新推荐楼[6/12 扩展小更]