阅读:1807回复:4
在about:newtab上启用手势&修改控制台快捷键
RT,fx82,不知道有没有办法实现
1. 手势(如gesturefy)可以通过设置在Mozilla网页上启用,但是依然无法在内部页面使用(主要是about:newtab),有插件或者别的解决方案吗? 2. 控制台默认ctrl+shift+K……可能moz的开发人员都是长臂猿才能单手按的出来吧。有没有办法修改这些浏览器快捷键呢? |
|
|
1楼#
发布于:2020-10-24 21:33
uc或者外部手势软件 比如mouseinc。。。
|
|
2楼#
发布于:2020-10-25 01:07
|
|
|
3楼#
发布于:2020-10-25 15:19
https://github.com/alice0775/userChrome.js/tree/master/72
uc用法详见72的readme https://github.com/alice0775/userChrome.js/tree/master/73,73有更新过userChrome.js 你也可以直接用打包好的https://www.firefox.net.cn/read-121490#read_369940 另外,手势可以用附件里的或者https://github.com/alice0775/userChrome.js/tree/master/77里的MouseGestures2_e10s.uc.js |
|
|
4楼#
发布于:2020-10-25 18:17
jiayiming:https://github.com/alice0775/userChrome.js/tree/master/72谢谢指点 不过现在懒得折腾,这次升级也是为了彻底摆脱没有长期支持的因素,投入WE的怀抱,所以想了想uc还是算了…… 2 的话,试着用ahk替代了,稍微分享一下也许有需要的人…… ; Firefox ; win + f Open profile #f:: Run "K:\App\Pool\FxQ" Return #IfWinActive ahk_class MozillaWindowClass ; alt+`控制台 !`:: Send {Ctrl down}{Shift down}{K}{Ctrl up}{Shift up} Return ; ctrl+`切换工具箱 ^`:: Send {Ctrl down}{Shift down}{I}{Ctrl up}{Shift up} Return #IfWinActive |
|
|