Showing questions tagged: Show all questions

no synchronization

I created an account on an old PC, in the account it is visible as kos-work-note, now I am on a new kos-ltop, and there is no data at all in the browser, why is that? … (read more)

I created an account on an old PC, in the account it is visible as kos-work-note, now I am on a new kos-ltop, and there is no data at all in the browser, why is that?

Asked by konstantin.velikotsky 4 days ago

Last reply by Vexi 4 days ago

Location

I have accounts that will not work because they cannot access my location, My computer says all access is allowed, so is there something in Firefox that blocks my locatio… (read more)

I have accounts that will not work because they cannot access my location, My computer says all access is allowed, so is there something in Firefox that blocks my location?

Asked by Tommy Pressley 2 weeks ago

Last reply by TyDraniu 2 weeks ago

Remove ad blocker

Hi. I play free sweepstakes and continually get messages that I am using an ad blocker. Need some help where to find the ad blocker so I can disable or remove it. Thanks … (read more)

Hi. I play free sweepstakes and continually get messages that I am using an ad blocker. Need some help where to find the ad blocker so I can disable or remove it. Thanks

Asked by John Odgers 1 month ago

Last reply by Paul 1 month ago

Add Persian language to translate web pages.Important!!

Why don't you have a Persian translation? When are you going to add Persian to translate sites? Please be responsive. Browsers at the lowest level have the ability to tra… (read more)

Why don't you have a Persian translation? When are you going to add Persian to translate sites? Please be responsive. Browsers at the lowest level have the ability to translate into Persian, but you... High-end applications must be programmed for all communities and even tastes. And in the end, adding a few languages, including Persian, is not a difficult task for you. But this small task will add 20 million users (Only in Iran)and more importantly This makes this browser the most popular among people who previously did not have the ability to translate their language in this browser.The population of Persian-speaking countries is larger than you might think. 1. Iran (100%) 2. Tajikistan (95%) 3. Afghanistan(80%)and several other countries with medium to low percentages

Asked by drarv.dr 2 months ago

Last reply by Kiki 1 month ago

ImportEnterpriseRoots

Hello, Recently I have noticed 'Your browser is being managed by your organization. - That being ImportEnterpriseRoots' appearing in settings. I have seen this mentione… (read more)

Hello,

Recently I have noticed 'Your browser is being managed by your organization. - That being ImportEnterpriseRoots' appearing in settings. I have seen this mentioned by others but as of yet I cannot see if it has been sorted yet. I have uninstalled and it went away, but it has since returned the following day. I Do not have any other anti-virus on this laptop other than Windows Defender so it cannot be that. I will not be using Firefox as default until this is gone, or at the very least know that its safe.

Asked by Slartibartfast 3 months ago

Last reply by jscher2000 - Support Volunteer 1 month ago

Changing download directory on Firefox android

I want to change my download directory on the mobile app, I've tried the solution of this post, but it doesn't seem to be working anymore, I can't find any other solution… (read more)

I want to change my download directory on the mobile app, I've tried the solution of this post, but it doesn't seem to be working anymore, I can't find any other solution

Asked by claymorwan 4 months ago

Last reply by Denys 1 month ago

Unable to access passwords

I have a Huawei P30 Pro and beta Firefox browser. When I try to view my passwords on Firefox, it brings up a lock screen password prompt. This page requires my password, … (read more)

I have a Huawei P30 Pro and beta Firefox browser. When I try to view my passwords on Firefox, it brings up a lock screen password prompt. This page requires my password, but the password is not recognized, even though it is correct. The lock screen password works in other situations but not in Firefox

Asked by Trevor Z 4 months ago

Last reply by T Jastec (CantODonSleep) 1 month ago

completely blank screen for https://outlook.live.com on 137.0.1 (aarch64) mac os

suddenly my work account at https://outlook.live.com is a completely white screen. access to other instances of this account (Onedrive, filesharing etc) are fine. Email … (read more)

suddenly my work account at https://outlook.live.com is a completely white screen.

access to other instances of this account (Onedrive, filesharing etc) are fine. Email account works on phone, so no problem with log-in

I have re-started the browser

Asked by rob.flint 3 months ago

Last reply by r-a.giller 1 month ago

text box disappears when typing

On Facebook, or other websites that have a text enter box that appears on the bottom, my keypad covers it and I need to scroll up to see what I've typed in and it Zooms b… (read more)

On Facebook, or other websites that have a text enter box that appears on the bottom, my keypad covers it and I need to scroll up to see what I've typed in and it Zooms back up to cover the text box as soon as I input a key. Whats going on?

Asked by kllyhghtn 3 months ago

Last reply by torchedpaper 1 month ago

Can I 'protect' a tab, so that trying FF instanced causes a warning

More frequently than I care to admit, I seem to close FF instances which I don't want to close (such as my connection to Whatsapp). I then miss important replies or quest… (read more)

More frequently than I care to admit, I seem to close FF instances which I don't want to close (such as my connection to Whatsapp). I then miss important replies or questions. Of course I can reach out to 'History' and try to find the closed Tab or Window... But that takes time.

I'd suggest adding/removing a 'protection' flag to a tab (eg. on right-clicking), so that, on trying to close the tab, or close the window containing the tab, I get a warning...

Asked by JohnCC 2 months ago

Last reply by Agent virtuel 2 months ago

Google Translate

I DO NOT use Google for anything, if I can help it. Every time I go to my credit union's website, the google bar showing View this page in (English, in my case) or turn o… (read more)

I DO NOT use Google for anything, if I can help it. Every time I go to my credit union's website, the google bar showing View this page in (English, in my case) or turn off for detect language shows up. I have no idea where it came from, I haven't used Chrome in years.

I've attached a small screenshot. It's not a huge deal, but I don't like google showing up at my credit union, or anywhere else.

Any help would be appreciated.

Asked by karenmarieme 3 months ago

Last reply by xinglixing07 2 months ago

Webassembly.compile() doesn't support SharedArrayBuffer in 138

Hello, as per description I noticed that firefox version 138 requires an ArrayBuffer as the argument of WebAssembly.compile() and doesn't allow anymore (like in 137) a S… (read more)

Hello,

as per description I noticed that firefox version 138 requires an ArrayBuffer as the argument of WebAssembly.compile() and doesn't allow anymore (like in 137) a SharedArrayBuffer, is this intended or it will be fixed in the future? Follows a simple test case. Kind reagards.


--- index.html --- <title>Example</title> <script> let instance = undefined; async function loadWasm() { try { const response = await fetch('./sum.wasm'); const buffer = await response.arrayBuffer(); const sharedBuffer = new SharedArrayBuffer(buffer.byteLength); const tmpView = new Uint8Array(sharedBuffer); tmpView.set(new Uint8Array(buffer)); const module = await WebAssembly.compile(sharedBuffer); instance = await WebAssembly.instantiate(module); } catch (error) { alert(`failed to compile in wasm: ${error.message}`); } } loadWasm(); function testWasm() { if (instance) alert(`sum 1 + 2 = ${instance.exports.add(1, 2)}`); else alert('invalid instance, failed to compile'); } </script> <button onclick="testWasm()">Press to run wasm function (sum)</button> --- ---

--- sum.wat --- (to convert into .wasm using: wat2wasm sum.wat -o sum.wasm) (module (func $add (param $lhs i32) (param $rhs i32) (result i32) local.get $lhs local.get $rhs i32.add) (export "add" (func $add)) ) --- ---

Asked by Fra 2 months ago

Last reply by TyDraniu 2 months ago