Showing questions tagged: Show all questions

Only display fully downloaded files in the download folder

Hello dear community, I have a program that continuously monitors the download folder under Windows 11 for a specific file and retrieves it. I download this file in Fire… (read more)

Hello dear community,

I have a program that continuously monitors the download folder under Windows 11 for a specific file and retrieves it. I download this file in Firefox, but the said program gives an error.

I have noticed that when files are downloaded in FireFox, they already appear in the Downloads folder with the corresponding file extension with 0 bytes and these are then apparently swapped or merged with the .parts file.

The problem is that the mentioned program now tries to retrieve the unfinished file, which then leads to an error.

Does anyone know if it is possible to customize Firefox so that the file only appears in the download folder when the download is fully complete?

Many thanks for your help :D

Asked by Andrijan 3 days ago

Last reply by jscher2000 - Support Volunteer 11 hours ago

tabs and auto updates

I just lost several hundred tabs on Firefox mobile right after it updated itself. The most recent tabs show only ten of those tabs, which were all opened and closed tod… (read more)

I just lost several hundred tabs on Firefox mobile right after it updated itself. The most recent tabs show only ten of those tabs, which were all opened and closed today and aren't part of what I need to restore.

How do I get my tabs back? I've seen no 'restore previous session' option. My laptop only shows the few I have open now. What do I do to restore them?

Asked by Katerpie 1 week ago

Last reply by Paul 18 hours ago

How do I dismiss a permission dialog?

Sometimes a box pops up on the screen that asks if I want to block or allow something. Sometimes I have no interest in doing either, and just want the damned dialog out o… (read more)

Sometimes a box pops up on the screen that asks if I want to block or allow something. Sometimes I have no interest in doing either, and just want the damned dialog out of my face. The page seems to work otherwise, but the stupid browser keeps the dialog over top of things, and clicking outside of it, and hitting Esc, don't make it go away. I think those actions used to work, and I think there, sensibly, used to be a dismiss option, but that seems to be absent now. There's no sense to trying to force me to make a decision I don't want to make, and doesn't even need to be made, and I want this thing to cut it out.

Asked by Sterrence 3 days ago

Last reply by cor-el 1 day ago

firefox PDF editor losing changes

Firefox seems to forget edits made to text boxes. I was reading a large pdf and adding notes to previously made text boxes. I thought I must be going crazy as I saw there… (read more)

Firefox seems to forget edits made to text boxes. I was reading a large pdf and adding notes to previously made text boxes. I thought I must be going crazy as I saw there was no notes I thought I had already made multiple times so I tested it. I edited a text box, scrolled a bit and continued browsing on another monitor. Checked in a minute and boom edit gone. If anyone has a solution I'd appreciate it as I have been using Firefox PDF editor for a bit and quite liked it until now.

Asked by rqcniqsobvdsrxhjet 2 days ago

Last reply by cor-el 1 day ago

Cannot share links to Google Messages

I am not able to share website links to Google Messages using Firefox Nightly for Android, version 127.0a1 (Build #2016020495). Steps to reproduce: open email message, t… (read more)

I am not able to share website links to Google Messages using Firefox Nightly for Android, version 127.0a1 (Build #2016020495).

Steps to reproduce: open email message, tap on a link, once the link opens in the Powered by Firefox Nightly screen I tap on the sharing icon, select Google Messages, Google Messages opens but the link address is not pasted on the compose message box. Trying to manually copying and pasting the link has the same result. The only way to be able to share the link is to open the link in Firefox Nightly (the full browser) and then share it.

This happens on a Google Pixel 8 Pro using the latest Android 14 version with related updates.

Asked by Guatiao 2 days ago

Last reply by Paul 2 days ago

Firefox Account data lost

I accidentally cleared the Firefox app's data while my account was still logged in and now all of my account data is completely gone. Am I just done for or is there a way… (read more)

I accidentally cleared the Firefox app's data while my account was still logged in and now all of my account data is completely gone. Am I just done for or is there a way to get this back?

Asked by May 2 days ago

Last reply by TyDraniu 2 days ago

Firefox browser issue

When on the Princess Cruise web site looking at various cruise options, the Firefox browser will not let me open the list of excursions for the ports on the cruise that w… (read more)

When on the Princess Cruise web site looking at various cruise options, the Firefox browser will not let me open the list of excursions for the ports on the cruise that we were looking to book, but I can see them when using Google Chrome. Why won't Foxfire allow me to view the excursions - it use to allow me to see them.

Asked by bright13 3 days ago

Last reply by cor-el 2 days ago

How do I change the default app Firefox uses to open downloaded files?

Currently, when I try and open downloaded .txt files and .log files (that is, when I click on them directly from the download pop-up that appears at the top-right of the … (read more)

Currently, when I try and open downloaded .txt files and .log files (that is, when I click on them directly from the download pop-up that appears at the top-right of the browser), Firefox inexplicably opens Aegisub on my machine as the app to use. This is in contrast to when I open it directly from within my file browser, where it opens the Kate text editor, as suggested by the default app option in the permissions of the filetype.

How do I change the apps Firefox uses to open downloaded files? I've tried going into my settings and looking at applications, but .txt and .log don't appear, so I'm not quite sure what to do.

I'm on Kubuntu 22.04.3 LTS, using the Firefox deb package.

Asked by domojestic 4 days ago

Last reply by jonzn4SUSE 2 days ago

Want Google gone or dead.

I want Firefox as my only browser, and have disabled google. I have Firefox as my default browser, but yet still have google as the browser that I'm forced to use. I seem… (read more)

I want Firefox as my only browser, and have disabled google. I have Firefox as my default browser, but yet still have google as the browser that I'm forced to use. I seem to have to go through the whole process to have one search that isn't taken over by Google. Any advise? Thanks.

Asked by kestelooh 3 days ago

Last reply by jscher2000 - Support Volunteer 3 days ago

Firefox does not display background color in option tags

I am trying to use a <select> tag to display a color selector. So each <option> has a background color to match its displayed text: ```<select id="stroke… (read more)

I am trying to use a <select> tag to display a color selector. So each <option> has a background color to match its displayed text:

```<select id="strokeColor" name="strokeColor" style="width: 10em;">

             <option value="black" style="background: #000000; text: #FFFFFF">
                     black
             </option>

<option value="aqua" style="background: #00FFFF">

                     aqua
             </option>

<option value="blue" style="background: #0000FF">

                     blue
             </option>

<option value="brown" style="background: #A52A2A">

                     brown
             </option>

<option value="gray" style="background: #808080">

                     gray
             </option>

<option value="green" style="background: #00FF00">

                     green
             </option>

<option value="magenta" style="background: #FF00FF">

                     magenta
             </option>

<option value="orange" style="background: #FFA500">

                     orange
             </option>

<option value="purple" style="background: #800080">

                     purple
             </option>

<option value="red" style="background: #FF0000">

                     red
             </option>

<option value="white" style="background: #FFFFFF">

                     white
             </option>

<option value="yellow" style="background: #FFFF00">

                     yellow
             </option>

<option value="#000000" selected="" style="background: #000000">

                     #000000
             </option>
         </select>```

On Chrome this displays as expected:

https://assets-prod.sumo.prod.webservices.mozgcp.net/media/uploads/images/2024-04-18-22-02-25-eebbd5.png

But on Firefox the background colors are ignored:

https://assets-prod.sumo.prod.webservices.mozgcp.net/media/uploads/images/2024-04-18-22-02-35-bd90ee.png

How can I get Firefox to display the background colors?

Asked by jamescobban 4 weeks ago

Last reply by jscher2000 - Support Volunteer 3 days ago

editing

Why are basic features like editing bookmarks not in the app. On chrome you are able to click and hold on a bookmark to select it, then click and hold on it again to move… (read more)

Why are basic features like editing bookmarks not in the app. On chrome you are able to click and hold on a bookmark to select it, then click and hold on it again to move it anywhere you'd like in the folder. Also there is no "move to" option on Firefox which would make sorting much easier, it would be nice to have such a simple feature like this for convenience.

Asked by Mortis 4 days ago

Last reply by Paul 4 days ago

Sound icon on taskbar does not open when Firefox is open.

Hello, I have the fallowing issue with Firefox and the sound icon on taskbar in Windows 10 22h2, when Firefox is open and I click on the sound icon on the taskbar in Wind… (read more)

Hello, I have the fallowing issue with Firefox and the sound icon on taskbar in Windows 10 22h2, when Firefox is open and I click on the sound icon on the taskbar in Windows 10 22h2 the sound icon does not open, when Firefox is closed the issue is gone.

Any help to fix this issue would be great.

Thanks

Matthew

Asked by Matthew Few 1 week ago

Last reply by jonzn4SUSE 5 days ago

Pinned Pages

Hello, I had a crap ton of pinned pages for a long time. I restarted my computer and now they're gone. I've restarted my computer before with no issues. Pinned pages are… (read more)

Hello,

I had a crap ton of pinned pages for a long time. I restarted my computer and now they're gone. I've restarted my computer before with no issues. Pinned pages are supposed to stay no matter if you turn off or restart. How can I go about getting them back?

Thanks,


Michelle Sinclair

Asked by michelle-sinclair76 1 week ago

Last reply by cor-el 1 week ago