Mozilla Destek’te Ara

Destek dolandırıcılığından kaçının. Mozilla sizden asla bir telefon numarasını aramanızı, mesaj göndermenizi veya kişisel bilgilerinizi paylaşmanızı istemez. Şüpheli durumları “Kötüye kullanım bildir” seçeneğini kullanarak bildirebilirsiniz.

Learn More

How to delete a feature item from FireFox menu?

  • 3 yanıt
  • 15 kişi bu sorunu yaşıyor
  • 14 gösterim
  • Son yanıtı yazan: cor-el

more options

Guys, when I click to save an image from the web, I sometimes miss with my mouse and instead of "save a picture as" I get a stinky "send a picture"! Shit, I HATE IT! If I want to send a picture, I'll send it myself, don't try to think for me. But this stinky "option" irritates me a lot!!! Plus, I have to shut down the sucking "Outlook Express" (the lousiest e-mail client worldwide!) every time I miss with the picture! Please, please, please help me to delete this stinky "send picture" option from my options menu (under right-mouse button). I do like FF, but I HATE such stinky "service"! Thanx a lot in advance!!!

Guys, when I click to save an image from the web, I sometimes miss with my mouse and instead of "save a picture as" I get a stinky "send a picture"! Shit, I HATE IT! If I want to send a picture, I'll send it myself, don't try to think for me. But this stinky "option" irritates me a lot!!! Plus, I have to shut down the sucking "Outlook Express" (the lousiest e-mail client worldwide!) every time I miss with the picture! Please, please, please help me to delete this stinky "send picture" option from my options menu (under right-mouse button). I do like FF, but I HATE such stinky "service"! Thanx a lot in advance!!!

Seçilen çözüm

You can use the Menu Editor extension to remove that item or use code in userChrome.css

Add code to userChrome.css below the default @namespace line.

The customization files userChrome.css (interface) and userContent.css (websites) are located in the chrome folder in the user profile folder.

You can use the ChromEdit Plus or Stylish extension to have easier access to the customization files.


@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); /* only needed once */

#context-sendlink { display:none!important; }
Bu yanıtı konu içinde okuyun 👍 1

Tüm Yanıtlar (3)

more options

Seçilen çözüm

You can use the Menu Editor extension to remove that item or use code in userChrome.css

Add code to userChrome.css below the default @namespace line.

The customization files userChrome.css (interface) and userContent.css (websites) are located in the chrome folder in the user profile folder.

You can use the ChromEdit Plus or Stylish extension to have easier access to the customization files.


@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); /* only needed once */

#context-sendlink { display:none!important; }
more options

Thanx a lot!!!