Ticket #23 (closed enhancement: wontfix)

Opened 3 years ago

Last modified 3 years ago

would be nice to have "exit" on the "Menu" menu

Reported by: jon@… Owned by:
Priority: minor Component: Unknown
Version: Severity: Unknown
Keywords: Cc:

Description

I found Tiny Menu after discovering that Compact Menu doesn't work with FF2 but miss its feature to add an extra "Exit" item on the menu after "Tools" and "Help".

Attachments

Change History

Changed 3 years ago by t-bone

  • status changed from new to closed
  • resolution set to wontfix

Thanks for your input but, bottom line, Tiny Menu is about tininess, not about extra things. Luckily, Firefox is a very extensible browser. Using the  userChrome.js extension, you can get this done simply. Put the text below into the userChrome.js file (which will be created, empty, in your profile after installing the extension linked just above.)

(function(){

var exitMenuItem=document.createElement('menuitem');
exitMenuItem.setAttribute('label', 'Exit');
exitMenuItem.setAttribute('accesskey', 'x');
exitMenuItem.setAttribute('oncommand', 'goQuitApplication();');

document.getElementById('tinymenu-popup').appendChild(exitMenuItem);

})();

Add/Change #23 (would be nice to have "exit" on the "Menu" menu)

Author


E-mail address and user name can be saved in the Preferences.


Action
as closed
Next status will be 'reopened'
 
Note: See TracTickets for help on using tickets.