8

I would like to remove the Send Image... option when right-clicking on an image in Firefox. I never use it and it's very annoying when accidentally clicked.

Any ideas how? I'm sure it's possible, but I think I need to add a line to some file, and I don't know where or what.

Gareth
  • 19,080
mr.
  • 183

2 Answers2

1

You can use the menu editor extension to quickly hide the options you don't want. But be aware: it's not as permanent and update resilient as the other solutions and it tends to shuffle some options around when disabled/enabled the extension, using the "reset all" will put them all back in their default places.

daf
  • 160
0

There are two similar my questions - 1st and 2nd. So what do you need:

  1. Open about:config page in Firefox and search for toolkit.legacyUserProfileCustomizations.stylesheets. Set it to true if it's false by e.g. double clicking the value.

  2. Create userChrome.css file in %APPDATA%\Mozilla\Firefox\Profiles\[profile-id]\chrome. If there is no folder chrome in [profile-id], it also must be created. To open your [profile-id] folder Go Help > More Troubleshooting Information > Profile Folder [Open folder].

  3. Add this to userChrome.cssfile: #context-sendimage, { display:none !important; }

  4. Save the file and (re)open Firefox. Menu entry should be gone.

XuMuK
  • 415