AdGuard
去广告神器
In My Pocket
将网页内容缓存起来,方便以后阅读,查看。
JSON Lite
对json类型格式化显示
Octotree
Github的文件目录用树形表示
Greasemonkey
脚本管理器
Dark Reader
设置黑色主题
印象笔记·剪藏
保存网页内容到Evernote
iCloud书签
同步Firefox和Safira书签
New Tab Suspender
内存占用过大时,自动挂起标签页。省内存
Sidebery
侧边栏标签页管理器。如果使用的笔记本,屏幕的高度是很珍贵的,在使用浏览器时我会尽量节省高度,比如将书签栏隐藏,书签放到跟地址栏同一行。标签栏也可以隐藏,Sidebery可用于在侧边管理标签,相比默认的标签栏,它更方便。
可以分组管理,标签可以按树形排列,推荐使用。
如何隐藏Firefox的标签栏
Firefox的标签栏是不能隐藏的,但是可以通过修改userChrome.css文件来实现。
- 设置
about:config中设置:toolkit.legacyUserProfileCustomizations.stylesheets为true
- 创建userChrome.css文件,打开帮助->故障排除信息->点击配置文件夹,进入配置文件夹,创建chrome文件夹,创建userChrome.css文件
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46
| #main-window:not([drawtitle="true"]):not([inFullscreen="true"])
#nav-bar { margin-left : 30px; border-right: 140px solid var(--toolbar-bgcolor); } :root[sizemode="maximized"] #nav-bar { margin-top: 10px !important; margin-left : 0px !important; border-right: 140px solid var(--toolbar-bgcolor); } :root[privatebrowsingmode="temporary"] #nav-bar { border-right: 180px solid var(--toolbar-bgcolor) !important; }
#titlebar { margin-bottom: -45px !important; }
.titlebar-buttonbox-container { margin-bottom: -5px !important; } :root[sizemode="maximized"] .titlebar-buttonbox-container { margin-bottom: -15px !important; }
.private-browsing-indicator { margin-bottom: -8px !important; } :root[sizemode="maximized"] .private-browsing-indicator { margin-bottom: -18px !important; }
#tabbrowser-tabs[orient="horizontal"] { visibility: collapse !important; }
#sidebar-box[sidebarcommand="_0ad88674-2b41-4cfb-99e3-e206c74a0076_-sidebar-action"] sidebarheader { visibility: collapse !important; }
|