How to add/delete items in right click context menu when opening a new link FF17 osx... 6 instances of open link in new identity profile have appeared

The menu items appeared without any idea why, they had not been there before. I have macbook with os 10.6.8 I had been trying to get pdf to work in firefox, so had followed a recipe suggesting enabling the pdf reader part of firefox. Required making 2 adjustments to the about:config. One disabling the browser.preferences.incontent and would changing default of pdfjs. Pdf still won't display, but don't know if what I did is related. Now I am trying to just find out how the menu gets modified at all, and whether I can do so as a user.

A little research revealed addons can add items to context menu, in this case multifox adds option to open tab in new profile for multiple gmail etc logins. I had updated addons earlier, think that triggered it. So now I know why and what it does. The problem is why 6 times listed (instead of just one)... it also varies, sometimes the context menu will have one instance... and have seen as many as 9. Not sure why it varies, but would still also like to know how to modify context menu. Could just be a bug in multifox with FF17 I suppose. I will disable multifox and see if problem goes away.

Similar Messages

  • How do I modify the file right-click context menu to add "creat shortcut"?

    I have just chosen Mozilla as my browser and want to add shortcuts to files by using the right-click context menu, but there is no "create shortcut" choice displayed.

    Could you describe where you're clicking, exactly? Are you clicking on a web page, or clicking a link on a web page? If you are using Firefox to browse files on your hard drive, you're probably better off using Windows Explorer to do that since Firefox doesn't have all the functions of Windows.

  • Is it possible to add a button to the right-click context menu for a user in Outlook 2010 using VBA?

    I've tried many things and read up quite a bit but I cannot figure this out.
    I cannot create an add-in so I have to use VBA.
    I want to add a a button to the right-click context menu when I right-click on a user. Is this possible?

    Hello,
    Yes, it is possible to customize the context menu in Outlook. See
    Customizing Context Menus in Office 2010 for more information.
    But VBA doesn't allow to customize the Fluent UI in Outlook, you need to develop an add-in instead.

  • PowerPoint 2010: deactivate/disable right click context menu

    Hi,
    I am looking for a way to deactivate/disable the right click context menu in PowerPoint 2010/365.
    For the editing font menu it works with the registry entry
    Go to: HKEY_CURRENT_USER\Software\Microsoft\Office\14.0\Common\Toolbars\PowerPoint Create a Dword AllowMenuFloaties and set the value to zero. Set to 1 to enable again.
    NOTE This will kill ALL floatie Menus not just the one you mention.
    Does anybody know, how it works for the main right click context menu?

    Hi,
    Hi,
    We can custom the existing right-click context menu in PowerPoint 2010 via VBA.
    A similar issue is addressed here, we can learn from this experience  :
    http://social.msdn.microsoft.com/Forums/en-US/f8c7ee04-2a08-4300-9a73-48ccf084723d/how-to-remove-munu-item-from-popup-menu?forum=worddev
    http://social.msdn.microsoft.com/Forums/office/en-US/c1eb22ba-6ca8-4c21-8100-62185355aa53/customize-rightclick-context-menu-in-powerpoint-2010?forum=officegeneral
    There is an example of Customizing Context Menus in All Versions of Microsoft Excel
    http://msdn.microsoft.com/en-us/library/gg469862(v=office.14).aspx
    If you need detail help, please post it in MSDN forum.
    http://social.msdn.microsoft.com/Forums/en-US/home?forum=exceldev&filter=alltypes&sort=lastpostdesc

  • How do I fix the right-click context menu; it has blank entries and shows no selectable options?

    recently I have noticed that my right-click context menu looks like it has no entries. It shows up on a right-click, but the whole menu is blank. On further investigation there are scroll buttons on the top and bottom of the menu and if I hover over the up buttom eventually the normal context commands scroll down from above. I noticed this first a few days ago, shortly after the download of 3.6.13. Today I also noticed that some of my menu bars were showing a similar issue with blank entries in the menus. In one case the menu also didn't register where the mouse was, highlighting a command several steps further up.
    Is this something to do with the new Mozilla or something else? I only run a couple of addons, Ad Block Plus and Tab Mix Plus. Can try to capture a screen shot of the issue, but difficult since the menu dissapears when I try to do a screen grab!
    All help is much appreciated.

    Hi, thanks for the quick response!
    While trying to find info on how to fix this I looked up some context menu addons for FF and tried one. It didn't work so I uninstalled it and after that everything was back to normal. Odd, but there you have it. I still don't know what went wrong in the first place but for the moment it appears to have cleared up.
    Next time though I will try loading into Safe Mode if I find any issues (I forgot there was one!).
    Thanks for getting back to me again.
    GC

  • Is there any way to prevent the right click context menu from combining Stop/Reload?

    Is there any way (about:config tweak, or something) to prevent the right click context menu from combining Stop/Reload?
    Screenshot of what I'm talking about: http://picsend.net/images/873089StupidReloadSto.png

    I did try the add-on ''Menu Editor'' https://addons.mozilla.org/en-US/firefox/addon/menu-editor/ but even when I separate the navigation reload and stop icons and explicitly have both stop and reload set to be visible on the right click context menu I only get the one option showing.
    Whilst there may be some way of changing this I do not know how to and I do not really see any use case for making such a change. Only one option of the choice: stop or reload, is available at any instance in time, but that is the option you are able to use, the other option is not active and so is not displayed.

  • Right click context menu does not appear only for Java 1.7, AWT TextField

    I have been debugging some issues that an application has been having with Java 1.7 versus older versions. A new problem I have encountered is that the right click context menu does not function in any TextField. It works fine when running/compiling it with any previous version of Java. I have tried coding a simple test with a Frame, Panel and TextField to see if it might be something else in the more complex application that was causing it, but the simple test class has the same problem.
    I have searched for other people having the same issue, but I have not found anything comparable. This seems like a huge change from one version to the next and I am surprised that I am not finding this mentioned anywhere else. Can someone point me to anything that discusses this issue that I am having? Does 1.7 require I implement my own context menu? I realize AWT is old technology, but this is an old, fairly complex application that doesn't use swing, and that is not going to change at this point.
    My simple test:
    import java.awt.*; 
    import java.awt.event.*; 
    import java.util.*; 
    class testF3 extends Panel 
      public static void main(String args[]) 
        Frame f = new Frame(); 
        Panel p = new Panel(); 
        f.setLayout(new BorderLayout()); 
        f.add("North", p); 
        TextField tf1 = new TextField("", 20); 
        p.add(tf1); 
        Dimension medm = f.getSize(); 
        medm.height = 100; 
        medm.width = 200; 
        f.setSize(medm); 
        f.setVisible(true); 

    In the past few days since upgrading to 4.0.4, the entire right-click context menu for links is gone and replaced with one item: "Copy Link" The "Open In New Tab" item, along with some other context items, is no longer there.
    That's actually a problem with your particular installation of Safari, b. I've got all the contextual menu entries with my 4.0.4.
    I helped fix one of these recently here at the forum. Try the procedure from the following post (it got back Tho's missing contextual menu entries):
    http://discussions.apple.com/thread.jspa?messageID=10598385&#10598385

  • Right-Click Context Menu's Acrobat X Pro Missing

    Hello.  I have a user of Acrobat X Pro on Windows XP 32-bit system.  When they right-click, the context menu's are not there.  These menu's exist in my other 2 users Acrobat 9 right-click menu's.  Please help me to resolve getting the menu items to show up.  I have tried running regsvr to reload the ContextMenu.dll file and it succeeded but still nothing when right clicking.

    Via Hit and Miss, I discovered that the "blanks" in my right click context menu are actually the command buttons, just missing the text.  I tried everything, including the contextmenu.dll approaches but nothing worked.  I then highlighted a few PDF's, hit the blank bar in the context menu, and voila - Acrobat opened and put me into the "combine files" window.    Even right-clicking on a single JPG and then hitting the blank bar opens up the "add files into a PDF" window.
    Not a perfect fix but at least it gives me what I want!!
    nd M

  • Disable Right Click Context Menu in XP "OPEN WITH ADOBE READER 8"

    How can I eliminate the right click context menu "OPEN WITH ADOBE READER 8" in Windows XP?
    I have general familiarity with removing context menus. I see no option for this one in msconfig, or various context menu editors. I am unable to find a setting in Adobe Reader 8. If you know where the setting is, or have solved this problem, please let me know.
    Thanks,
    Joey

    That would be the device Metadata from the print driver vendor. It's part of the Device Stage feature mainly for client OS.
    Here is some MSDN documentation on the feature.
    http://windows.microsoft.com/en-us/windows7/products/features/device-management
    If this is a print server, use the tools include by the print team if you are performing any management on the server.
    Printmanagement.msc
    The Devices UI is really about devices it's not designed for print management, the spooler team had minimal input on the UI design.
    Alan Morris formerly with Windows Printing Team

  • The Right click context menu, and menu butons are all yellow?

    The right click context menu, and the Drop down menus for the tool bar, all have Yellow Text.
    Everything else is working normally, and the Yellow text is un related to windows itself, as Windows still has the standard coloring for the menus and Right click context. im stumped.
    Adblock Plus 2.0.3
    Easy YouTube Video Downloader 5.9
    EPUB Reader 1.4.1.1
    FoxTab 1.4.4
    Ghostery 2.7.2
    IMVU Toolbar 3.10.0.1
    .Net Framework
    Personas 1.6.2 [have had same persona for ages so its not that]
    Roomy Bookmarks 1.3.3
    Smoothwheel 0.45.6.20100202.1
    Tab scope 1.1.4
    Turn off the lights 2.0.0.71
    Yontoo Layers 1.20.00
    i have latest version of firefox. 11
    no virus detected with Malwarbytes, or Avast.
    setting check through windows shows no carry over from a botched windows theme setting.
    its cosmetic issue mostly, not harmful.

    Hmmm, that shouldn't happen. It's difficult to change the text colors in the interface without installing a theme or an add-on that lets you tweak the menus.
    Can you try switching between the default theme and your current theme?
    Do any of those extensions let you change display settings?

  • T40's Left Shift key makes right click/context menu appear?

    Hello All-
    On my T40, on which I just recently got Windows 7 correctly installed, has a curious behavior:
    When I press the left shift key, it functions the same as if I had pressed the right mouse button.  It functions correctly otherwise, I.E., when using it to capitolize a letter in an email, the letter is capitolized, but as soon as I let go of the shift key, the right click/context menu immediately appears.
    This is exceedingly irritating, as I cannot continue typing until I have navigated out of the menu.
    I have checked to see if the Keyboard Customiser utility is causing this, as I currently have my left Alt key functioning as a Windows button, but it does not appear to be causing this particular issue.
    Does anyone have any idea how I might go about fixing this?
    Thanks in advance,
    G
    Solved!
    Go to Solution.

    Nevermind-
    Had the keyboard customizer set to use the left shfit key as the application key.  Duh.

  • Right-Click context menu is gone

    Using Windows 7, Safari 4.0.4. I noticed recently that when I right-click on a link, I saw the link context menu and I used to be able to select "Open in new tab" This was great to use the mouse only to navigate, open new tabs, and surf around...using just the mouse.
    In the past few days since upgrading to 4.0.4, the entire right-click context menu for links is gone and replaced with one item: "Copy Link" The "Open In New Tab" item, along with some other context items, is no longer there.
    To be honest, this is pretty useless. If I'm only using the mouse, then this means that I have to:
    1. Right Click on a link, select Copy Link
    2. Right click in the tab bar and select "New Tab"
    3. Click in the address bar of the new tab to select the field
    4. Right-click in the address bar and select paste
    5. And now I'm still having to use the keyboard to submit the address as there is no "Go" button for the address bar.
    I know I can just Ctrl + Click a link to open in a new tab, but that requires the keyboard and the mouse.
    I'm all for simple interfaces, but why did you take away the link's right-click context menu? It made surfing and opening tabs so easy using just the mouse.

    In the past few days since upgrading to 4.0.4, the entire right-click context menu for links is gone and replaced with one item: "Copy Link" The "Open In New Tab" item, along with some other context items, is no longer there.
    That's actually a problem with your particular installation of Safari, b. I've got all the contextual menu entries with my 4.0.4.
    I helped fix one of these recently here at the forum. Try the procedure from the following post (it got back Tho's missing contextual menu entries):
    http://discussions.apple.com/thread.jspa?messageID=10598385&#10598385

  • Satellite M100 - Right click context menu kepps popping up

    The right click context menu keeps popping up in my Toshiba Satelite M100 thereby making it so hard to type.
    I disabled my touch pad and used a mouse but still the menu keeps popping up. What should I do? How do I know whether my touchpad driver is installed correctly? Also how to reinstall it?
    Please give step by step instruction because when I tried to install, I get the message error in installing ikernel.exe...
    Please help

    Hi,
    I know I sound stupid but I have some questions regarding uninstalling the existing version. I have Toshiba touchpad driver and toshiba touchpad ON/Off utility.
    Should uninstall both? Also i disabled the touchpad using the the ON/OFF utility and used a mouse but still the menu kept popping up.
    This problem occurs most of the time. At times,everything works fine for a few hours and then the problem starts. I scan my computer for viruses once in a week and updates my antivirus daily. Also I had my computer formatted after this problem started. Still this prob occurs.
    Please help.

  • Libreoffice right-click context menu going beyond the end of the page

    having a rather annoying issue with libreoffice 3.x (started with 3.5.x and still in 3.6.1): The right-click context menu goes over the screen borders when I am at the end of the page (instead of opening in the other direction so that all options are visible). I am running arch 64bit KDE 4.9.1. But I think in this case that's not relevant because we have a second computer, the same one basically with an extremely similar setup and there it works just fine. I did uninstall libreoffice, got rid of the .cache in the home folder, then reinstalled but the problem persists.
    Anyone know how to fix this or hints on how to approach the problem?
    Thx!
    Captn

    Update:
    the problem was fixed with an update to KDE 4.9.2 but shortly after for some reason, it reappeared. As previously mentioned, I tried uninstalling libreoffice entirely, including the libreoffice .config folder. Here is what it looks like (second screen shot):
    I noticed that this also happens with dolphin when I open it as root. Someone came across the same issue and fixed it?
    Help's greatly appreciated
    Captn
    Edit: libreoffice version 3.6.1
    Edit 2: Real Problem identified:
    I just wanted to update this thread should there be others that, at one point or another, run into a similar problem. I won't be marking the thread as solved since I did not actually solve the problem (yet). However, I did identify the cause and therefore know how to circumvent it.
    Since I didn't elaborate much on the specs / technical side, I have an HP pavilion with an Nvidia card and I am using the propretiary drivers. I set up a separate X screen for my TV and there is where the problem lies. It has worked for months but since recently this setup causes some weird graphical behavior (as in the above pictures) which can be annoying. If using the twinview setup or no external monitor, everything works normal. My guess is that plasma-desktop and the separate x screen don't work very well together for a reason unknown to me for the time being.
    The problem itself can be annoying if you rely on libreoffice to work so I hope this might help somebody should there be annyone running into a similar issue.
    Last edited by capthilts (2012-10-13 06:02:32)

  • Right click context menu super slow!!!

    i have window 8.1 64bit when i try to right click mouse it take a really long time(like 1 or 2 minute) to response, and
    this is for all office(word, ppt) files, chrome, and some music files.
    I have already tried the way recommended by this website:
    http://windowsxp.mvps.org/slowrightclick.htm
    but it doesn't work,
    Can anyone help me???

    Hi,
    For the issue, I suggest we try the clean boot mode and safe mode to test if we can get rid of this problem.
    How to perform a clean boot to troubleshoot a problem in Windows 8.1, Windows 8, Windows 7, or Windows Vista
    http://support.microsoft.com/kb/929135
    Meanwhile, please let us try SFC tool to check the result:
    Use the System File Checker tool to repair missing or corrupted system files
    http://support.microsoft.com/kb/929833
    In addition, you can also refer to the similar thread about this issue:
    http://social.technet.microsoft.com/Forums/windows/en-US/84875a10-663a-40b8-aac8-87d64473b0b6/right-click-context-menu-slow?forum=w7itproperf
    Let we test if it also apply to Windows 8.
    Regards,
    Kelvin hsu
    TechNet Community Support

Maybe you are looking for

  • Regarding Packaged function...!

    Hi, i have a packaged function which i am trying to use in my report query.... i am passing 2 params for this function..... one is report parameter and the other one is a col in the select query.... so i need to get rows returned based on the condito

  • PR Item Text Different for same Material in the same Plant.

    I have a Query for SAP MM. Below is the Scenario: User raises a PR through SAP for a particular Material (Spare) which belongs to an Equipment. Let's say in Plant A, we have an Equipment 10001 & it has a sub-Equipment as 1000112 & further it has a sp

  • Apple Mail - 5.1 Search param's?

    Using Mail 5.1 (OS 10.7.2) I can't seem to find the option to narrow my search parameters i.e.: Subject/entire message/fr/ etc. as in previous versions of Mail. The Mail Help says: "To change the criteria, click the arrow and choose From, To, or Enti

  • I succesfully logged in to the Users Forum; but unable to post my statement. What shold I do?

    I had password problems, which prevented me from logging in to the Users Forum. Now I got my password changed, which was accepted and logged into the Users Forum. But the Text Area therein does not accept any typed input. Finall I am forced to ask th

  • Problems,to store videos in SD CARD

    Hi, I was receiving the videos through Bluetooth, rather than saving the videos in Memory Card the videos were saved into the Phone Memory(Saved Pictures). I had set the option to save the picture and videos to Sd Card. Any Solution???