Showing questions tagged: Show all questions

Disabling GPU process fixes stuttering on external display on dual-GPU Optimus laptop

My configuration is the following: Windows 11, internal display connected to iGPU and external UHD display to nvidia-HDMI port, multiple firefox windows are opened (1 one… (read more)

My configuration is the following: Windows 11, internal display connected to iGPU and external UHD display to nvidia-HDMI port, multiple firefox windows are opened (1 one the internal screen, 2 on the external).

Then in Windows->Settings->GPU I can select firefox to run on either iGPU (powersaving) or on Nvidia GPU (max perf), the problem is the following: Whenever I set firefox running on iGPU, there would be a massive stuttering/framedrop on an external display (connected to NVIDIA), while a perfectly smooth browsing on internal display, and vice versa.

My first attempt was to disable webrenderer compositor or switching it to a software rendering, which fixes the heavy stuttering, but the scrolling becomes overall less fluid/responsive.

However, setting "layers.gpu-process.enabled" to "false" seemingly solves this problem completely. Now I have a perfectly smooth scrolling on both displays, regardless of which GPU is used in Windows->Settings->GPU (nvidia's is arguably a little but more responsive).

Hope this helps someone, or maybe dev team could look deeper into this.

Thank you for the great browser!

Asked by Alexey Samosyuk Duela astebete

Last reply by Alexey Samosyuk Duela ordu bat

How to edit icon used by Firefox history entry for a specific URL?

I would like to be able to quickly identify certain URLs that appear in my Firefox history by simply looking at corresponding icon — is there a way to edit a Firefox hist… (read more)

I would like to be able to quickly identify certain URLs that appear in my Firefox history by simply looking at corresponding icon — is there a way to edit a Firefox history item to do this?

Asked by David Romano Duela 4 ordu

Email

I have Yahoo.com as my email provider (Firefox is my internet provider). When I get emails I don't want, I move them to the Junk Email option BUT, it only deletes that sp… (read more)

I have Yahoo.com as my email provider (Firefox is my internet provider). When I get emails I don't want, I move them to the Junk Email option BUT, it only deletes that specific email and does NOT keep it from being sent again (and they ARE, repeatedly). I contacted Yahoo and and all they do is send me to a website that will answer the question but sign me up for a monthly $46 to $55 fee. Any way known that I can solve my problem?

Asked by Anthony Antonowicz Duela 21 ordu

Very strong overexposure on all videos

Hello, I faced such a problem as a very strong contrast on all videos, for example on Youtube. I used firefox 2 years ago and there was no such problem. I tried to reduce… (read more)

Hello, I faced such a problem as a very strong contrast on all videos, for example on Youtube. I used firefox 2 years ago and there was no such problem. I tried to reduce the brightness and contrast in the monitor settings, but alas it did not help. Please help me solve the problem

Asked by Женёк Duela egun bat

Setting text alignment in Firefox PDF viewer

Is there a way to change text alignment for Firefox PDF viewer? When I add text to a PDF file, sometimes it's left aligned and sometimes centered, so I think I might hav… (read more)

Is there a way to change text alignment for Firefox PDF viewer?

When I add text to a PDF file, sometimes it's left aligned and sometimes centered, so I think I might have changed the alignment accidentally.

Asked by prlygates1121 Duela egun bat

Firefox on Linux? ChromeOS?

I currently run MS10. I do not like MS software but use its OS. I do not want to use MS11 when MS10 is no longer provided with security upgrades by microsoft. Will Mozill… (read more)

I currently run MS10. I do not like MS software but use its OS. I do not want to use MS11 when MS10 is no longer provided with security upgrades by microsoft. Will Mozilla Firefox browser run without problems on either Linux or ChromeOSFlex? If so, which OS is recommended by this community?

Asked by knoll2000 Duela 2 egun

Last reply by James Duela egun bat

Automatically download and save URL to File (like open Website in Firefox and save it there) - Java must work -

Hi I need to download Websites automatically via Batch exaktly like the Browser would save them via Strg+S. I used curl to do that and it worked fine for many years but… (read more)

Hi

I need to download Websites automatically via Batch exaktly like the Browser would save them via Strg+S.

I used curl to do that and it worked fine for many years but now the Source-Website has changed and so curl is no longer able to get the content. The problem is that the URL / Website that the Browser downloads does not contain the information. This is loaded later by a java script.

So when I open the URL in the Browser and look at the Source-Code I can see something like

 <script src="/example.js"></script>


When I press Strg+S to save the website the whole site is saved, because the java script was executed by the Browser. Curl does not process java so it saves only the source code with the "<script src="/example.js"></script>"

Question is: How can I download the URL directly with the Java Script executed so that the informaion is included too ?

I hope anybody can answer that.

Thank you.

Asked by nicommander Duela 2 egun

CLOSE TAB in content area context menu.

I have previously been able to include the tab 'Close Tab' item in the #contentAreaContextMenu by adding it to browser.xhtml. This no longer works even though 'Reopen Clo… (read more)

I have previously been able to include the tab 'Close Tab' item in the #contentAreaContextMenu by adding it to browser.xhtml. This no longer works even though 'Reopen Closed Tab' and 'New Tab' still do.

     <menuitem id="toolbar-context-openANewTab"
               command="cmd_newNavigatorTab"
               data-l10n-id="toolbar-context-menu-new-tab"/>
     <menuitem id="context_closeTab"
               label="Close Tab"
               data-lazy-l10n-id="tab-context-close-n-tabs"
               data-l10n-args='{"tabCount": 1}'/>
     <menuitem id="context_undoCloseTab"
               label="Reopen Closed Tab"
               data-l10n-id="tab-context-reopen-closed-tabs"
               data-l10n-args='{"tabCount": 1}'
               observes="History:UndoCloseTab"/>


I was previously using the following which no longer works either.

       <menuitem id="context_closeTab"
               label="Close Tab"
               oncommand="BrowserCloseTabOrWindow(event);"/>

Asked by deanone Duela 3 egun

Here's working C# source code to open and arrange 3 Firefox browsers on a 4K monitor wtih Windows

modify to suit your tastes or improve it? working now without any known issues. using System.Diagnostics; using System.Runtime.InteropServices; using System.Text; name… (read more)

modify to suit your tastes or improve it? working now without any known issues.

using System.Diagnostics; using System.Runtime.InteropServices; using System.Text;

namespace FirefoxWindowPositioner {

   class Program {
       [DllImport("user32.dll", SetLastError = true)]
       private static extern bool MoveWindow(IntPtr hWnd, int X, int Y, int nWidth, int nHeight, bool bRepaint);
       [DllImport("user32.dll", SetLastError = true)]
       private static extern bool EnumWindows(EnumWindowsProc lpEnumFunc, IntPtr lParam);
       [DllImport("user32.dll", SetLastError = true)]
       private static extern uint GetWindowThreadProcessId(IntPtr hWnd, out uint lpdwProcessId);
       [DllImport("user32.dll")]
       [return: MarshalAs(UnmanagedType.Bool)]
       private static extern bool IsWindowVisible(IntPtr hWnd);
       [DllImport("user32.dll", SetLastError = true)]
       private static extern IntPtr GetWindow(IntPtr hWnd, uint uCmd);
       [DllImport("user32.dll", SetLastError = true)]
       private static extern int GetWindowText(IntPtr hWnd, StringBuilder lpString, int nMaxCount);
       [DllImport("user32.dll", SetLastError = true)]
       private static extern int GetClassName(IntPtr hWnd, StringBuilder lpClassName, int nMaxCount);
       private const uint GW_OWNER = 4;
       private const int MaxRetries = 100;
       private const int SleepTime = 200;
       private const string ClassNameToFind = "MozillaWindowClass";
       private delegate bool EnumWindowsProc(IntPtr hWnd, IntPtr lParam);
       private static IntPtr foundWindowHandle = IntPtr.Zero;
       private static bool EnumWindowsCallback(IntPtr hWnd, IntPtr lParam) {
           uint processId;
           GetWindowThreadProcessId(hWnd, out processId);
           if (IsWindowVisible(hWnd) && GetWindow(hWnd, GW_OWNER) == IntPtr.Zero) {
               StringBuilder className = new StringBuilder(256);
               GetClassName(hWnd, className, className.Capacity);
               if (className.ToString() == ClassNameToFind) {
                   foundWindowHandle = hWnd;
                   Console.WriteLine($"Found window handle {hWnd} for process ID {processId}");
                   return false; // Stop enumerating windows once the desired window is found
               }
           }
           return true; // Continue enumerating windows
       }
       static void Main(string[] args) {
           string path = @"C:\Program Files\Mozilla Firefox\firefox.exe";
           // Define positions and sizes
           int[,] positions = new int[,]
           {
               {0, 0, 1284, 2120},
               {1280, 0, 1284, 2120},
               {2560, 0, 1284, 2120}
           };
           int initialDelay = 750; // Initial delay in milliseconds, 1000 worked
           int retryDelay = 200; // Delay between retries in milliseconds
           // Start three Firefox processes sequentially and move them to specified positions
           for (int i = 0; i < 3; i++) {
               Process firefoxProcess = Process.Start(path);
               Thread.Sleep(initialDelay); // Wait for the process to initialize
               foundWindowHandle = IntPtr.Zero;
               int retries = 0;
               while (foundWindowHandle == IntPtr.Zero && retries < MaxRetries) {
                   EnumWindows(EnumWindowsCallback, IntPtr.Zero);
                   if (foundWindowHandle == IntPtr.Zero) {
                       Thread.Sleep(retryDelay); // Wait before retrying
                       retries++;
                   }
               }
               if (foundWindowHandle != IntPtr.Zero) {
                   bool success = MoveWindow(foundWindowHandle, positions[i, 0], positions[i, 1], positions[i, 2], positions[i, 3], true);
                   if (success) {
                       Console.WriteLine($"Moved window {i + 1} to X: {positions[i, 0]}, Y: {positions[i, 1]}, Width: {positions[i, 2]}, Height: {positions[i, 3]}");
                   } else {
                       Console.WriteLine($"Failed to move window {i + 1}");
                   }
               } else {
                   Console.WriteLine($"Failed to get handle for Firefox process {i + 1}");
               }
           }
       }
   }

}

Asked by FireFoxCustomWannabe Duela 5 egun

cannot log into my yahoo mail recently, it use to work fine

I get this error while trying to log into yahoo mail, I have cleared casche history. Secure Connection Failed An error occurred during a connection to guce.yahoo.com. P… (read more)

I get this error while trying to log into yahoo mail, I have cleared casche history.

Secure Connection Failed

An error occurred during a connection to guce.yahoo.com. PR_END_OF_FILE_ERROR

Error code: PR_END_OF_FILE_ERROR

   The page you are trying to view cannot be shown because the authenticity of the received data could not be verified.
   Please contact the website owners to inform them of this problem.

Asked by faulhaberfrank Duela astebete

Last reply by jonzn4SUSE Duela astebete

Can I create a bookmark for Help->About Firefox?

I know it takes just two mouse clicks to open the About dialog, but I'd like to bookmark it so when I check my daily bookmarks by right-clicking a folder and clicking "Op… (read more)

I know it takes just two mouse clicks to open the About dialog, but I'd like to bookmark it so when I check my daily bookmarks by right-clicking a folder and clicking "Open All Bookmarks", it would be displayed. This would be a convenient, albeit forceful, way to keep Firefox up-to-date. The About dialog isn't modal, so that shouldn't be an issue.

Asked by ForceRs Duela astebete

Last reply by TechHorse Duela astebete

  • Konponduta

When in a private window, How do you open a bookmark or link in a normal window?

If you are currently using a normal window then there are ways to open a bookmark or link in a private window. But if you are currently using a private window then how wo… (read more)

If you are currently using a normal window then there are ways to open a bookmark or link in a private window. But if you are currently using a private window then how would you open a bookmark or link in a normal window?

I have tried several things including pressing shift+enter or choosing "Open in new Window" from the context menu, but this just opens the bookmark or link in a new private window.

My current method is to copy the address of the bookmark or link then paste it into the address bar of a normal window.

But is there a more direct method of opening bookmarks or links in a normal window, if currently in a private window?

Thanks.

Asked by TechHorse Duela astebete

Answered by cor-el Duela astebete

More upgrades apache code

Need help some one trying to make look crazy .there using there knowledge for there own evil ways.so please help thanks. … (read more)

Need help some one trying to make look crazy .there using there knowledge for there own evil ways.so please help thanks.

Asked by Douglas Duela astebete

Suggestions: Download Webpage as HTML

Hello. I noticed that on the current version of Firefox browser on Android, there seems to be no button to download the current webpage as a HTML file? Would such a featu… (read more)

Hello. I noticed that on the current version of Firefox browser on Android, there seems to be no button to download the current webpage as a HTML file? Would such a feature be considered in the future?

Asked by egg.plus101 Duela astebete