[已解决] 主菜单的弹出位置可以修改吗?

阅读:3982回复:2
2022-01-17 22:13
写私信
楼主#
如图,主菜单是朝左边弹出的,能改成像书签菜单那样在右边弹出吗?






这个是我现在的菜单按钮 css:
#PanelUI-button {
-moz-box-ordinal-group: 0 !important;
border-left-width: 0px !important;
border-left-style: solid !important;
margin-left: 0px !important;
margin-right: -8px !important;
padding-left: 0px !important;
padding-top: 1px !important;
}

最新喜欢:

aunsen
2022-01-17 23:05
写私信
1楼#
需要 UC 脚本
location.href == 'chrome://browser/content/browser.xhtml' && eval(
  'PanelUI.show=function ' + PanelUI.show.toString().replace(
    'triggerEvent: domEvent,', '$& position:"bottomcenter topleft",'
  )
);
2022-01-18 09:48
写私信
2楼#
lonely_8:需要 UC 脚本
location.href == 'chrome://browser/content/browser.xhtml' && eval(
  'PanelUI.show=function ' + PanelUI.show....
回到原帖
好了,谢谢!