Prikaz označenih pitanja: Prikaži sva pitanja

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… (pročitajte više)

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 prije 3 dana

Last reply by jscher2000 - Support Volunteer prije 9 sati

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… (pročitajte više)

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 prije 1 sedmicu

Last reply by Paul prije 16 sati

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… (pročitajte više)

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 prije 3 dana

Last reply by cor-el prije 1 dan

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… (pročitajte više)

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 prije 2 dana

Last reply by cor-el prije 1 dan

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… (pročitajte više)

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 prije 2 dana

Last reply by Paul prije 1 dan

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… (pročitajte više)

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 prije 2 dana

Last reply by TyDraniu prije 2 dana

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… (pročitajte više)

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 prije 2 dana

Last reply by cor-el prije 2 dana

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 … (pročitajte više)

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 prije 4 dana

Last reply by jonzn4SUSE prije 2 dana

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… (pročitajte više)

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 prije 3 dana

Last reply by jscher2000 - Support Volunteer prije 3 dana

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… (pročitajte više)

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 prije 4 sedmica

Last reply by jscher2000 - Support Volunteer prije 3 dana

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… (pročitajte više)

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 prije 4 dana

Last reply by Paul prije 4 dana

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… (pročitajte više)

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 prije 1 sedmicu

Last reply by jonzn4SUSE prije 5 dana

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… (pročitajte više)

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 prije 1 sedmicu

Last reply by cor-el prije 1 sedmicu