Search Support

Avoid support scams. We will never ask you to call or text a phone number or share personal information. Please report suspicious activity using the “Report Abuse” option.

Learn More

How to make Firefox always show navigation buttons in context menu, also when right clicking an image?

  • 4 பதிலளிப்புகள்
  • 0 இந்த பிரச்னைகள் உள்ளது
  • 14 views
  • Last reply by zenuity

Is there any way to make Firefox show the "back", "forward", "reload", "bookmark" buttons that are shown in the default context menu when right clicking a web page also in the context menu that is shown when right clicking an image?

I think those buttons should always be included in all context menus opened for a web page, no matter if you happen to click on the background, on selected text, on an image or a link because.

It is so frustrating having to open the context menu multiple times to find a location where the default context menu is opened instead of the specific ones for selected texts, images, links etc.

Thanks!

Is there any way to make Firefox show the "back", "forward", "reload", "bookmark" buttons that are shown in the default context menu when right clicking a web page also in the context menu that is shown when right clicking an image? I think those buttons should always be included in all context menus opened for a web page, no matter if you happen to click on the background, on selected text, on an image or a link because. It is so frustrating having to open the context menu multiple times to find a location where the default context menu is opened instead of the specific ones for selected texts, images, links etc. Thanks!
Attached screenshots

தீர்வு தேர்ந்தெடுக்கப்பட்டது

zeroknight said

Paste the following into a text file and save it to <profile>/chrome/userChrome.css. Change toolkit.legacyUserProfileCustomizations.stylesheets to true in about:config then restart the browser. #context-navigation, #context-navigation > menuitem, #context-sep-navigation { display: flex; } #context-stop[disabled="true"] { display: none; } #context-reload:has(+ #context-stop:not([disabled])) { display: none; }

Thank you very much, this works perfectly!

Read this answer in context 👍 0

All Replies (4)

The context menu only shows items relevant to where you open the context menu, hence the name context menu, so you only get those buttons if you right-click in an area that doesn't have its own context menu (i.e. you get the standard menu). You can always click those buttons directly in the Navigation Toolbar or use the keyboard.

Helpful?

Paste the following into a text file and save it to <profile>/chrome/userChrome.css. Change toolkit.legacyUserProfileCustomizations.stylesheets to true in about:config then restart the browser.

#context-navigation,
#context-navigation > menuitem,
#context-sep-navigation {
  display: flex;
}
#context-stop[disabled="true"] {
  display: none;
}
#context-reload:has(+ #context-stop:not([disabled])) {
  display: none;
}

Helpful?

cor-el said

The context menu only shows items relevant to where you open the context menu, hence the name context menu, so you only get those buttons if you right-click in an area that doesn't have its own context menu (i.e. you get the standard menu). You can always click those buttons directly in the Navigation Toolbar or use the keyboard.

I argue that the browser page context menu should always show the actions relevant for the web page. If a link or image has been clicked, the menu should additionally show the more specific actions for the clicked entity.

Helpful?

தீர்வு தேர்ந்தெடுக்கப்பட்டது

zeroknight said

Paste the following into a text file and save it to <profile>/chrome/userChrome.css. Change toolkit.legacyUserProfileCustomizations.stylesheets to true in about:config then restart the browser. #context-navigation, #context-navigation > menuitem, #context-sep-navigation { display: flex; } #context-stop[disabled="true"] { display: none; } #context-reload:has(+ #context-stop:not([disabled])) { display: none; }

Thank you very much, this works perfectly!

Helpful?

கேள்வி எழுப்பு

You must log in to your account to reply to posts. Please start a new question, if you do not have an account yet.