SeaMonkey 2.46 Right Click Menu (Context Menu) Modification

Discussion of general topics about Seamonkey
Post Reply
Stereodoc
Posts: 76
Joined: July 23rd, 2011, 12:34 pm

SeaMonkey 2.46 Right Click Menu (Context Menu) Modification

Post by Stereodoc »

Is it possible to modify the right click or context menu in SM2.46 to put "Open link in New Window" above "Open Link in New Tab"? If so, how?

I tried modifying userChrome.css from a much earlier and similar post for SM2.2 with this (shown in blue below) but no luck in getting it to swap.

OS is Win 7.


Paste the following into your userChrome.css (which should be located, together with file
userChrome-example.css, in the folder "chrome" in your profile folder).
This will restore context menus to as they were before SM 2.1, in browser links as well as bookmarks and SM Mail.

It addition, the first three lines of the code will also get rid of the "Open in All Tabs"
annoyance at the bottom of your bookmarks.

If you don't have userChrome.css in your profile folder, paste into userChrome-example.css
instead and save the file ("Save As") as userChrome.css.


.openintabs-menuseparator,
.openintabs-menuitem {
display: none !important;}

#contentAreaContextMenu > * {-moz-box-ordinal-group:2;}

menuitem[label="Open Link in New Window"]
{-moz-box-ordinal-group:1!important;}

#placesContext > * {-moz-box-ordinal-group:3;}

menuitem[label="Open"]
{-moz-box-ordinal-group:1!important;}
menuitem[label="Open in a New Window"]
{-moz-box-ordinal-group:2!important;}

#mailContext > * {-moz-box-ordinal-group:2;}

menuitem[label="Open Message in New Window"]
{-moz-box-ordinal-group:1!important;}
menuitem[label="Open Link in New Window"]
{-moz-box-ordinal-group:1!important;}

#folderPaneContext > * {-moz-box-ordinal-group:3;}

menuitem[label="Get Messages For Account"]
{-moz-box-ordinal-group:1!important;}
menuitem[label="Open in New Mail Window"]
{-moz-box-ordinal-group:2!important;}

User avatar
ElTxolo
Posts: 2806
Joined: July 30th, 2007, 9:35 am
Location: Localhost

Re: SeaMonkey 2.46 Right Click Menu (Context Menu) Modificat

Post by ElTxolo »

Stereodoc wrote:Is it possible to modify the right click or context menu in SM2.46 to put "Open link in New Window" above "Open Link in New Tab"? If so, how?
....
  • Image You can use Menu Wizard extension, for SeaMonkey.







    Cheers !! Image
How to Ask Questions The Smart Way - How to Report Bugs Effectively ;)
Mozilla/5.0 (X11; Linux x86_64; rv:91.0) Gecko/20240109 SeaMonkey/2.53.18.1
Mozilla/5.0 (X11; Linux x86_64; rv:91.0) Gecko/20240324 SeaMonkey/2.53.19 :lildevil:

~
Stereodoc
Posts: 76
Joined: July 23rd, 2011, 12:34 pm

Re: SeaMonkey 2.46 Right Click Menu (Context Menu) Modificat

Post by Stereodoc »

That did the trick. Thanks.
User avatar
ElTxolo
Posts: 2806
Joined: July 30th, 2007, 9:35 am
Location: Localhost

Re: SeaMonkey 2.46 Right Click Menu (Context Menu) Modificat

Post by ElTxolo »

Stereodoc wrote:That did the trick. Thanks.
How to Ask Questions The Smart Way - How to Report Bugs Effectively ;)
Mozilla/5.0 (X11; Linux x86_64; rv:91.0) Gecko/20240109 SeaMonkey/2.53.18.1
Mozilla/5.0 (X11; Linux x86_64; rv:91.0) Gecko/20240324 SeaMonkey/2.53.19 :lildevil:

~
Stereodoc
Posts: 76
Joined: July 23rd, 2011, 12:34 pm

Re: SeaMonkey 2.46 Right Click Menu (Context Menu) Modificat

Post by Stereodoc »

I discovered that SeaMonkey went to 2.49.1 after posting my original post and upgraded accordingly. Thanks for the tip.
vladmir
Posts: 319
Joined: October 18th, 2004, 9:47 am

Re: SeaMonkey 2.46 Right Click Menu (Context Menu) Modificat

Post by vladmir »

.bookmarks-actions-menuseparator,
.openintabs-menuitem{
display:none !important;
}
Post Reply