[SOLVED] Need some help in moving a tab right click context menu item to the bottom
I'm using this add-on to add a "Close Tabs to the Right" option. But after installing another add-on, the "Close Tabs to the Right" option isn't at the bottom anymore and I want to move it all the way to the bottom.
I searched and came across this guide to edit right click context menu items. However, I cannot get it to work.
Yes. It swaps their positions but they rearrange on browser restart. Since I installed Close Tab to Right first and Discard later, I uninstalled Close Tab and reinstalled it. Same effect. Their positions switch but on a browser restart, they're back to where they were before all this.
Look at this post by MrOtherGuy : https://lemmy.world/post/687686. For a menu item added by an extension, you should use its label, e.g. menuitem[label="Copy Tab Title and URL"]. Are you aware that there is a FirefoxCSS on this site? https://fedia.io/m/FirefoxCSS/
From Firefox 113 onwards -moz-box related properties won't work because the UI switched to using standard flexbox instead. So your -moz-box-ordinal-group: 2 won't do anything. Use order: 2 instead.