How to permanently disable quick links

Recently Firefox has started doing something extremely annoying - activating something called quick links whenever I use an apostrophe ('). The only way I have found to disable it is to go into about:config and add a boolean to disable it, but when I restart Firefox it goes back to the default settings. This is incredibly annoying because damnit, I want to use proper grammar and punctuation in my posts and this thing won't let me! I never asked to turn it on since Ctrl-F does the same thing, it is a redundant feature that has a stupid trigger. I'm seriously switching to Chrome over this, but I'm hoping I can solve the problem first...

Above "solutions" attempted.
Did not work.
Solutions that involve me resizing windows, or opening and closing dialogue boxes, or sacrificing a chicken to the mozilla overlords are not acceptable. Fix the problem by removing the keymap, or allowing users to remove the keymapping, would be grand.
Any other ideas here? I would try the "upgrade FF'" solution, but FF4.1 does not support firebug yet, and without firebug there really is not a reason to use Firefox.
This has to be the most boneheaded UI/UX decision ever.
Guess what, the apostrophe is used CONSTANTLY when you are writing things like, oh, email... google docs... facebook posts... twitter posts...
Seriously. Double Picard Facepalm.
I've tried a number of the suggested ways to disable this "feature" and none of them work. Basically, in FF4, I am totally boned.

Similar Messages

  • How to permanently disable this message: "Press Esc to exit full screen." (by Adobe Flash Player) in Mac's Safari Browser?

    Hello everyone,
    I have been searching for sometime (without any success) for a solution to permanently remove this annoying message: "Press Esc to exit full screen."
    Whenever I go to full screen mode, watching any video on YouTube, BBC, CNN (or many other websites which use Adobe Flash Player for streaming video) I have to bare seeing this message for several seconds until it fades away. Seeing this message once or twice would have been okay, but as we all watch many videos on a daily basis on internet, after weeks, months and now years seeing this message over and over again many times every day, it becomes very annoying, and I find myself rewinding many videos to their beginning after this message fades away to be able to watch it from the beginning without anything obstructing it!
    Does anyone know how to "permanently" disable this message from appearing?
    I am using the latest version of Safari 6.0 on the latest version of OS X (Mountain Lion 10.8.1), and have the latest version of Adobe Flash Player (Plug-in version 11.4.402.265) installed on my new MacBook Pro 15" with Retina Display.
    Thanks,
    Ally
    Thursday, September 13th, 2012

    Thanks Carolyn,
    I am attaching a screenshot here for you to see that this setting was already set to what you suggested. I didn't need to change it as it was like this even before I post this message.
    So the problem still presists and unfortunately your suggestion is not a solution to this probelm.
    Last night I did more reseach and found a discussion in Adobe website, it seems a lot of other people have the same issue, and even started a discussion in Adobe website about it. But unfortunately Adobe refuses to address it and enable the end user at least to have an option to turn this message off from displaying permanently on his/her computer.
    I am writing down the url links for the two posts regarding this issue on Adobe's website:
    Link #1: http://forums.adobe.com/thread/921270
    Link #2: https://bugbase.adobe.com/index.cfm?event=bug&id=3058752
    Hopefully more people will get involved and ultimately we will either get Adobe's attention, or someone will find a "hack" and post it here for all of us. I have found some suggested "hacks" for Windows environment (you can simply google it, I am sure you will find them too). But so far I haven't seen anything for Mac's Safari browser.
    Cheers,
    Ally
    Thursday, September 13th, 2012

  • How to permanent disable the touchpad for dv6-1245dx

    i can't find anything to permanently disable the touchpad.
    I disabled  the item in the control panel, but still it turns during bootup or after standby.
    how to permanently disable that touchpad?
    ps. also uninstalled the driver, but it's still working.

    Hi,
    Go to Control Panel -> Devices Manager -> Mouse and other pointing devices
    Click with right button of Your mouse on Touchapd abd choose switch off.
    ** Say thanks by clicking the "Thumb up" icon which is on the left. **
    ** Make it easier for other people to find solutions, by marking my answer with "Accept as Solution" if it solves your issue. **

  • How to permanently disable local TimeMachine backups?

    Hi,
    I have disabled the local TimeMachine using:
      sudo tmutil disablelocal
    That all works fine but after a reboot, the local backups are back again. For some reason this setting doesn't survives a reboot.
    Can nayone give me some advise on how to permanently disable local TimeMachine backups?
    Dennis

    Here's how I permanently disable TM local snapshots:
    1. create  ~/Library/LaunchAgents/com.wfiveash.disable_tmlsnaps.plist containing:
    <?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
    <plist version="1.0">
    <dict>
        <key>Label</key>
        <string>com.wfiveash.disable_tmlsnaps</string>
        <key>ProgramArguments</key>
        <array>
            <string>/Users/willf/bin/disable_tmlsnaps.ksh</string>
        </array>
        <key>WatchPaths</key>
        <array>
            <string>/Library/Preferences/com.apple.TimeMachine.plist</string>
        </array>
    </dict>
    </plist>
    2. create a shell script ~/bin/disable_tmlsnaps.ksh:
    #!/bin/ksh -p
    # This script is supposed to be run via launchd (see
    # ~/Library/LaunchAgents/com.wfiveash.disable_tmlsnaps.plist) when launchd
    # detects a change to the TimeMachine.plist file.  This script will determine
    # if TM local snapshots has been enabled via the MobileBackups property and if
    # it has it will run the setuid disable_tmlsnaps binary.
    # prevent launchd throttling respawn warning, must wait 10s before this script exits
    sleep 10
    integer lsnaps=-1
    lsnaps=$(defaults read /Library/Preferences/com.apple.TimeMachine.plist MobileBackups)
    if [[ $lsnaps -eq 1 ]]
    then
        exec "${HOME}/bin/i386/disable_tmlsnaps"
    elif [[ $lsnaps -eq -1 ]]
    then
        # there was an error running defaults
        exit 1
    else
        exit 0
    fi
    3. Lastly compiled this C program and named it ~/bin/i386/disable_tmlsnaps.  I set the permissions so it was owned by root and setuid:
    * To build: gcc -o disable_tmlsnaps disable_tmlsnaps.c
    * sudo chown root:wheel disable_tmlsnaps
    * sudo chmod u+s disable_tmlsnaps
    #include <stdio.h>
    #include <stdlib.h>
    #include <sys/types.h>
    #include <unistd.h>
    int
    main (int argc, char *argv[])
        int rc;
        rc = setuid(0);
        if (rc == 0)
            rc = system("/usr/bin/tmutil disablelocal");
        return rc;
    =================================================================
    Now when /Library/Preferences/com.apple.TimeMachine.plist is modified (which happens when TM is enabled or disabled) launched will run my disable_tmlsnaps.ksh script which will check to see if it needs to disable TM local snapshots.

  • How do I disable Quick find?

    I do not want quick find to pop up when I hit "/". How do I disable it?

    Okay, I installed that ancient add-on. The instructions on that page are:
    <br />
    >> You can change these settings with the following two preferences:<br />
    >> user_pref("searchkeys.link.key", xxx);<br />
    >> user_pref("searchkeys.find.key", xxx);<br />
    >> where xxx is the ascii code of the key you like for the action.<br />
    >> You can also disable at all the feature, with this preferences:<br />
    >> user_pref("searchkeys.disable.all", true);
    Where do I type those commands?

  • How to permanently disable comment popup hint in Adobe Reader X?

    I wish to permanently disable the popup that says  "Click on Comment and Share to create, mark-up and send PDF files.":
    It is getting annoying having to always click it to remove it when viewing a new PDF file in Fullscreen mode.
    How can I acheive this?
    Is there a setting in the preferences or a key in the registry that I can modify?

    You're right. I've tested on a couple of computers now and the problem seems to be isolated to one computer with a particular software setup. On the others it works as you describe.
    You would'nt by any chance know where this "don't show the bubble"-setting is stored after clicking the cross for the first time? Is it in the registry?
    Edit:
    Received a helpful tips: HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\10.0\AVGeneral\bShowTaskButtonInfoBubble

  • How to permanently disable the Shared Photo Stream on a windows pc

    I've got the Icloud control panel installed on a windows7 pc. On this specific pc I only want My Photostream running. I've tried to disable the Shared Photo Stream - but when I log off my windows user account an then log in again, the checkmark next to the Shared photo Stream is back, and iCloud starts again downloading the shared stream. How can I stop this behavior? I want to permanently disable the Shared Photo Stream.

    Try this method of duplication:
    <font "size=+1">Duplicate a CD or DVD
    1. Insert the DVD/CD;
    2. Open Disk Utility, and select the DVD/CD from the left side list (select the DVD/CD icon on top);
    3. from the DU File menu select New | Disk Image from Disk 1;
    4. Choose to format the disk image as DVD/CD Master, name the disk image and click Save;
    5. When the .cdr file is finished select it with mouse and press COMMAND-I to open the Get Info and check the box to lock the file;
    6. Choose the .cdr file from the left side list, click Burn, and insert a new, blank DVD or CD.

  • How to get Iview Quick link displayed in a headless window

    Hi
    I set the quick link for a iview, the iview has the Launch in new windows property set to 'Launch in a separated headless portal window', However when I run this iview's  quick link URL, it always open in a portal content area with all the header and navigation bar beside. How can do to have the quick link open in a headerless windows. Thanks.
    Cecilia Huang

    Hello,
    seems this is still not solved, even in 7.4 portal.
    Maybe some other Portal Admins out there have an idea?
    Everyone can reproduce the issue like this:
    Make an URL iview pointing to http://www.google.com
    Set Quicklink to  google  ( so it will be /irj/portal/google  )
    Set Launch in new window: "Open in separate window".
    Add the iView to a role you have.
    Test:
    Call the iview from the navigation inside portal. Effekt: The browser opens a new window and shows http://www.google.com  . So this works as expected.
    Call the quicklink  <yourportal>/irj/portal/google . The portal tries to launch the http://www.google.com inside the content area. In this case I get the error message that "Content cannot be displayed in a frame"
    I think a lot of Portal admins would like to get this working as they could use Quicklinks more heavily.
    Question to SAP: Is this intended behaviour ?
    Regs
    Ulf
    By the way:
    Does anyone know how to list all  quicklinks available in the PCD ? I tried with the PCD Inspector, but did not succeed.
    C U  @ #teched_2014

  • How to permanently disable click-to-run "feature" on all plug-ins

    How can I permanently disable the click-to-run "feature" for all plug-ins *including* ones that are unsafe, exploitable, etc.?
    I know that this is "unsafe", "inadvisable", a "security risk", etc. however this question has been asked many times and I have not yet found an answer. My reason for wanting to do so is not important and there is no point in questioning it; this is a simple question with what should be a simple answer, and does not require the bickering and arguing that always ensues when someone asks this extraordinarily basic question.
    I want to permanently disable any and all forms of click-to-run for any and all plugins, so that all plugins run without having to be clicked first and show absolutely no warnings whatsoever of any kind. If I don't want to run a plug-in I will disable it.
    How can I do this very simply thing?

    Some outdated plugins (e.g. Flash plugins) are blocked via click-to-play and can be enabled when required.<br />
    It is best to update such a plugin to the latest version to be protected against security vulnerabilities.
    You would have to disable blocklisting to circumvent this and that is not recommended.

  • How to permanently disable programs running in Activity Monitor?

    Considering the Activity Monitor being able to manually disable programs running in the background. How do I permanently disable programs running in the background ?
    Not all these programs appear in the System Preferences >> Users & Groups >> Login Items
    System details:

    jojojona wrote:
    Considering the Activity Monitor being able to manually disable programs running in the background. How do I permanently disable programs running in the background ?...
    You might want to make a full clone backup of your boot drive before you start disabling processes unless you know what software those processes support since you may break software you need. For example, Creative Cloud is Adobe software; do you use any Adobe software which might depend on Creative Cloud running?

  • How to PERMANENTLY disable auto-run write trials of qttask.exe and outbound

    I installed QuickTime player on my WinXP.
    As I found out my firewall pops up frequently since then informing me that qttaks wants to write itself in the auto-start folder.
    Furthermore I observed several internet connection attempts.
    So QT want to call come to Moms server at apple?, eh?
    This is nasty and really annoying similar to MS.
    How can I disable both PERMANENTLY?
    I did not found options for that.
    Peter

    It is probably trying to load the "Content Guide" and you can turn this off in the Player Preferences.

  • How to permanently disable hyperlink autopopup views?

    How do I permanently disable the annoying feat of viewing a preview of a hyperlink, everytime the mouse hovers over a hyperlink?
    It's really gad damn annoying!

    Welcome to Apple Communities
    Settings > Safari

  • HOW to permanently disable Tap to Click? Keeps re-enabling !@$#@&# HP 2000 Notebook PC Windows 7

    I sincerely hope whoever implemented this featurehas [edited comment by moderator].  I was so tempted to just throw this machine out, or donating it to a homeless person though the latter could possibly be considered an act of cruelty.
    Anyway, no matter how many times I disable tap to click, before long my laptop is clicking everything against my will, again. Is there a way to permanently disable this without permanently destroying the whole of the physical machine (which is growing increasingly tempting)?
    My drivers are all up to date. So far I could only find a vague suggestion to edit the registry without details as to how and where.

    Hi @hypgnosis ,
    I have brought your issue to the attention of an appropriate team within HP. They will likely request information from you in order to look up your case details or product serial number. Please look for a private message from an identified HP contact. Additionally, keep in mind not to publically post ( serial numbers and case details).
    If you are unfamiliar with how the Forum's private message capability works, you can learn about that here.
    Regards,
    George
    I work for HP

  • How can i disable a link/button after clicked while content active

    hello all
    i am building a website all on one page and am using the
    spry framework so that it displays when clicked fades in
    the issue is i dont want the link to work again after its been
    clicked ie when the link is active then
    when another link is clicked it is re activated and
    can be used again!?
    i am using the behaviours panel in dreamweaver?
    cant seem to find an option to
    toggle this function
    i am not great at js or html
    but any help would be appreciated!
    many thanks
    ]p

    Because we are not privy to your code I shall answer this in general.
    You can use the Spry Element Selector to target your link and to disable that link. When clicking another link you could cycle through your links and enable them before disabling the newly clicked link.
    More info on the Spry Element Selector can be found here http://labs.adobe.com/technologies/spry/articles/element_selector/index.html and here http://labs.adobe.com/technologies/spry/articles/element_selector/selector_examples.html

  • How to permanently disable Windows Defender?

    Windows Defender won't stay disabled.  I searched through the threads and saw several others have had this problem but the issue has apparently never been resolved.  I removed Windows Defender from startup using MSCONFIG, disabled it from the GUI
    that's accessible through the Control Panel, and disabled the service through the Administrative Services > Services panel, yet the program is still re-enabling itself after every reboot.  
    I searched around but saw no "Fix-It" articles or anything suggesting that Microsoft has any interest whatsoever in trying to resolve this issue.  Does anyone know of a registry hack or a third-party tool that will knock out Windows Defender
    permanently? 

    As per the link provided by
    Cyber_Defend_Team it should be disabled... 
    But in rare case it wont completely disabled.. At this point you can do a registry trick and reboot.. Beforeo ahead backup the registry key ... 
    1)Then change directory to the location where you have extracted the PSTools.zip
    (Mine it is C:\Users\araa\Desktop\PSTools )
    (2) open registry editor with psexec  with following parameters.. -s -i -d 
    The command should be psexec -s -i -d regedit
    Then registry editor will be opened and navigate to this path
    [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows Defender]
    Double click on REG_DWORD  "DisableAntiSpyware" and
    make that value to 1.
    http://www.windowstechinfo.com/2013/10/solved-application-failed-to.html
    Reboot

Maybe you are looking for

  • How to get new and updated data into LO Excel in Xcelsius

    Dear Experts, I have created dashboard on top of webi report by using Live-Office connection. Latest data of webi report is imported into excel and mapped data with components and generated SWF file and exported into server. To day my webi report has

  • Trying to update iPhone4 to 5.1 but getting an "ineligible to update" error. What does this mean?

    I'm a very novice iPhone user but am tired of getting update requests to install newer apps. So I've tried to install the newer 5.1 iOS update from my current 4.2.1 version. However, I get an error that states I'm "ineligible" to update this version.

  • Urgent Application Express response

    Hi all: I am developing an application using APEX, this application will be requested from an external web application. The http request of the external web application will add some variables which will include users information that I will need to

  • Strange Bug in iBook Author?

    Last year I created an iBook lab manual for my students.  The file size of the final book was around 750MB.  The file size proved to be too large and cumbersome to download and took a while for it to show up in iBooks. This year I decided to chop up

  • Video not displayed in fullscreen mode in Flash CS3..

    Hi, I am bit new to flash. I had designed a flash interactive material and in it when gone to video section the screen goes black in full screen mode when the output in made into windows projector (.exe).  But in normal mode the viedo runs smoothly.