Firefox... taming the beast part 2 !!

Page 50 of 50 FirstFirst ... 40484950

  1. Posts : 23,282
    Win 10 Home ♦♦♦19045.4355 (x64) [22H2]
    Thread Starter
       #491

    cereberus said:
    No point in discussing ridiculous notions that it is ok to use Windows but not to trust Edge.

    Subject closed so people can get back to discussing FF if they must.




    We must, we must.
      My Computer


  2. Posts : 14
    Windows 10 64 bit
       #492

    Been a while since I posted here, not sure but does anyone remember Cool Previews? An add on for Firefox that let you click on a little letter P to preview a site before loading it. Was wondering if there's a way to add it to newer versions of Firefox so you can view links on a search result without clicking the link or visiting the page like Cool Previews allowed you to do. I found one add-on on the add-on store in firefox but it opens a large window over the results and some results just displayed a 404 error others just had a spinning circle and nothing more so not reliable enough and if you moved the screen to see the links when you hovered over another link the screen was back in the middle of the page again. Quite annoying, I'd prefer the little blue P icon back or something similar. Anyone know of an add-on that allows this in newer firefox versions?
      My Computer


  3. Posts : 6,855
    22H2 64 Bit Pro
       #493

    @bazzietuk
    This one just displays a preview image in search results.

    Search Result Previews – Get this Extension for 🦊 Firefox (en-US)

    It only works with Google and also these search engines:

    Firefox... taming the beast part 2 !!-search-engines.jpg

    Qwant:

    Firefox... taming the beast part 2 !!-qwant-search-librewolf.jpg

    DuckDuckGo:

    Firefox... taming the beast part 2 !!-tenforums-tutorial-duckduckgo-librewolf.jpg

    I don't think that your question belongs in this thread so maybe get it moved into it's own thread.
      My Computer


  4. Posts : 14
    Windows 10 64 bit
       #494

    I didn't know if there was a setting in the about:config to handle previews or not that's why I posted it here :) I read about the tab preview in a magazine and that got me thinking back to the Cool Previews one and wondering if it was possible to get the same thing in newer versions of Firefox using it's built in settings instead of a add-on.

    Thanks for the link to the add-on though that one works a dream in duckduckgo :)
      My Computer


  5. Posts : 6,855
    22H2 64 Bit Pro
       #495

    I don't think so but could be wrong.
      My Computer


  6. Posts : 274
    WIN10
       #496

    I'm just gonna plop this here as well. Registry settings For both Firefox and Thunderbird to very quickly block auto updates, "Pocket", telemetry and other nonsense. Read it over and edit to your hearts content, paste into a .REG file, double click/merge and wallah! There are a lot more that can be added, but this was aggressive enough for me.

    Code:
    Windows Registry Editor Version 5.00
    
    [HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Mozilla\Firefox]
    "DisablePocket"=dword:00000001
    "DisableTelemetry"=dword:00000001
    "AppAutoUpdate"=dword:00000000
    "BackgroundAppUpdate"=dword:00000000
    "DisableAppUpdate"=dword:00000001
    "DisableFirefoxStudies"=dword:00000001
    
    [HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Mozilla\Firefox\FirefoxHome]
    "TopSites"=dword:00000000
    "SponsoredTopSites"=dword:00000000
    "Highlights"=dword:00000000
    "Pocket"=dword:00000000
    "SponsoredPocket"=dword:00000000
    "Snippets"=dword:00000000
    "WebSuggestions"=dword:00000000
    "SponsoredSuggestions"=dword:00000000
    "ImproveSuggest"=dword:00000000
    
    [HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Mozilla\Firefox\Preferences]
    "geo.enabled"=dword:00000000
    "security.ssl.errorReporting.enabled"=dword:00000000
    "extensions.htmlaboutaddons.recommendations.enabled"=dword:00000000
    "extensions.getAddons.showPane"=dword:00000000
    
    [HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Mozilla\Firefox\UserMessaging]
    "WhatsNew"=dword:00000000
    "ExtensionRecommendations"=dword:00000000
    "FeatureRecommendations"=dword:00000000
    "MoreFromMozilla"=dword:00000000
    
    [HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Mozilla\Thunderbird]
    "DisablePocket"=dword:00000001
    "DisableTelemetry"=dword:00000001
    "AppAutoUpdate"=dword:00000000
    "BackgroundAppUpdate"=dword:00000000
    "DisableAppUpdate"=dword:00000001
    "CaptivePortal"=dword:00000000
    "DisableFirefoxStudies"=dword:00000001
    "DisableFormHistory"=dword:00000001
    
    [HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Mozilla\Thunderbird\FirefoxHome]
    "TopSites"=dword:00000000
    "Highlights"=dword:00000000
    "Pocket"=dword:00000000
    "SponsoredPocket"=dword:00000000
    "Snippets"=dword:00000000
    
    [HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Mozilla\Thunderbird\Preferences]
    "geo.enabled"=dword:00000000
    "extensions.getAddons.showPane"=dword:00000000
      My Computer


  7. Posts : 14
    Windows 10 64 bit
       #497

    Another issue rears it's head in my Firefox journey so seeking yet more help :)

    Is there a way to increase the size and style of the close tab button? Right now the close tab icon is so small it's really difficult to click on and close a tab.

    Also my text for the file, edit, view history etc is really small so can the font size be increased? I have it set in the settings option but it only increases the text size on a page not the text size for the menu's or bookmark menu etc.
      My Computer


  8. Posts : 3,275
    Win10
       #498

    I don't know of any add-ons which might achieve it, but if using userChrome.css is an option, setting the tab close and menu fonts sizes is quite possible, with the following basic Styles.

    userChrome.css
    Code:
    /* note: adj' font size % as req'd */
    
    /* make top menu labels larger   */
    #main-menubar > menu  {
      font-size: 115% !important;         
    }
    
    /* make "popup menu items" larger */
    menupopup > menuitem, 
    menupopup > menu {
      font-size:     115%  !important;
      padding-block: 4px   !important;  /* change the padding between menu items to make them more compact */
      margin-block:  0px   !important;
    }
    
    /* make the appmenu items larger (if wanted ) */
    #appMenu-popup  {
      font-size: 115% !important;
    }
    
    /* Make Tab close button larger - adjust dimensions as req'd */
    .tab-close-button {
      width:   20px !important;
      height:  20px !important;
      padding: 0px  !important;
      border-radius: var(--toolbarbutton-border-radius) !important;
      /*border:  1px solid #30303048                    !important;                      */    /* if req'd */
      /*background-color: color-mix(in srgb, #0000ffaa 30%, transparent 100%) !important;*/    /* if req'd */
    }
    /* Tab close button hover color - if req'd */
    .tab-close-button:hover {
      background:  red   !important;     
      color:       white !important;
    }
    default:
    Firefox... taming the beast part 2 !!-ff_default_menu_font_tab_close.png

    with above user Styles:
    Firefox... taming the beast part 2 !!-ff_larger_menu_font_tab_close.png
      My Computers


  9. Posts : 14
    Windows 10 64 bit
       #499

    I tried that Das10 but it didn't seem to do anything. I put it at the bottom of my Userchrome file and restarted Firefox but nothing happened at all. How do I check that Userchrome is being activated and used in Firefox. It should be as I have used other tweaks from these threads on Firefox to get it looking more like the older versions.
      My Computer


  10. Posts : 6,855
    22H2 64 Bit Pro
       #500

    bazzietuk said:
    I tried that Das10 but it didn't seem to do anything. I put it at the bottom of my Userchrome file and restarted Firefox but nothing happened at all. How do I check that Userchrome is being activated and used in Firefox.
    Exit Firefox and rename the file userchrome.old then create a new userchrome.css containing only the suggested fix.

    Launch Firefox and test. If it works as expected then possibly something in your userchrome.css is taking preference.
      My Computer


 

  Related Discussions
Our Sites
Site Links
About Us
Windows 10 Forums is an independent web site and has not been authorized, sponsored, or otherwise approved by Microsoft Corporation. "Windows 10" and related materials are trademarks of Microsoft Corp.

© Designer Media Ltd
All times are GMT -5. The time now is 17:28.
Find Us




Windows 10 Forums