我已经换到57了,57真的快,虽然套件死一堆,
但是用过57就回不去了。
1. 鼠标手势换成全域的strokeplus
在一般页面上按住右键向左滑 送出“回到上一页”
在PTT Websocket页面上 改为送出“方向键←”
https://robertabcd.github.io/PttChrome/dev.html?site=wsstelnet://ws.ptt.cc/bbs
local currentWindowTitle = acGetWindowTitle(nil, gsx, gsy)
if currentWindowTitle == "ptt.cc - Google Chrome" or currentWindowTitle == "PttChrome - Mozilla Firefox" then
acSendKeys("{LEFT}")
else
acSendKeys("{BROWSERBACK}")
end
“回到下一页”“滚动到页底”“滚动到页首”等手势依此类推。
一般页面按住右键往下滑“滚动到页底”
PTT Websocket页面改为“PageDown”
local currentWindowTitle = acGetWindowTitle(nil, gsx, gsy)
if currentWindowTitle == "ptt.cc - Google Chrome" or currentWindowTitle == "PttChrome - Mozilla Firefox" then
acSendKeys("{PGDN}")
else
acSendKeys("{END}")
end
2. 拖曳
https://addons.mozilla.org/zh-TW/firefox/addon/glitterdrag/
搜寻范本新增“Google Search”“Google Image”,记得要储存。
3. Multifox小号分页,Firefox已经内建Container,
已经开启的分页要即时切换为不同Container可以用
https://addons.mozilla.org/zh-TW/firefox/addon/switch-container/
4. 新分页开启在目前分页的右边,不要放在最尾
https://addons.mozilla.org/zh-TW/firefox/addon/open-tabs-next-to-current/
Firefox 57已经内建点击书签开启在新分页
网址列输入about:config按Enter,
搜寻browser.tabs.loadBookmarksInTabs设为true
5. 样式xStyle,脚本Tampermonkey
6. 选中文字自动复制
https://addons.mozilla.org/zh-TW/firefox/addon/copy-on-select/
7. 57仍然可以修改接口
在profile资料夹下建立chrome资料夹新增一个userChrome.css
把修改接口的样式写在这里
例如:
/*隐藏书签的说明文字*/
@namespace url(http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul);
#personal-bookmarks .toolbarbutton-text {
display: none !important;
}
/*修改分页标签的文字大小粗细*/
.tab-label {
font-size: 14px;
-webkit-text-stroke: 0.0200em;
}
/*修改书签资料夹默认的黄色文件夹图示*/
.bookmark-item[container="true"][label="书签名称,例如我的最爱"] {
list-style-image: url("data:image/png;base64,图片的base64码") !important;
-moz-image-region: rect(0px 16px 16px 0px) !important;
}
8. 在Sandboxie中使用Firefox 57,要修改about:config
security.sandbox.content.level默认为3修改为2
暂时解法,等Sandboxie推新版修掉bug后,再改回默认值