Kukhonjiswa imibuzo ethegiwe: Veza yonke imibuzo
  • Kusonjululiwe
  • Okugcinwe kunqolobane

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.

An error occurred during a connection to netfoundation.itslearning.com. PR_CONNECT_RESET_ERROR Error code: PR_CONNECT_RESET_ERROR The page you are trying to view can… (funda kabanzi)

An error occurred during a connection to netfoundation.itslearning.com. PR_CONNECT_RESET_ERROR

Error code: PR_CONNECT_RESET_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 Natnael Solomon 1 unyaka odlule

Answered by Natnael Solomon 1 unyaka odlule

  • Kusonjululiwe
  • Okugcinwe kunqolobane

Youtube and other webpages EXTREMELY SLOW started today after 1 1/2 years of usage

As the subject says Firefox very suddenly started giving me terrible loading times, despite all the sites working perfectly fine on other devices and browsers. Issue cont… (funda kabanzi)

As the subject says Firefox very suddenly started giving me terrible loading times, despite all the sites working perfectly fine on other devices and browsers. Issue continued with troubleshooting mode, not sure where to go from here. I will open youtube, it won't load about 5 thumbnails, I click on a video and it sets it to 140p and then it still lags the entire video as if I was using 1kbps internet. I tested my wifi connection and its having no problems. Something similar happened when I used to use Opera GX, it was fine for a long time and then one day terrible performance. Please let me know where to go from here. Windows 11 Pro.

Asked by Hayden N 1 unyaka odlule

Answered by Hayden N 1 unyaka odlule

  • Kusonjululiwe
  • Okugcinwe kunqolobane

Can't log into Gmail

I've been using Firefox and Gmail on my PC and android phone for years. Today I can't log into my gmail account on my PC and instead it redirects to google support and go… (funda kabanzi)

I've been using Firefox and Gmail on my PC and android phone for years. Today I can't log into my gmail account on my PC and instead it redirects to google support and goes on about clearing cache etc etc. I have cleared the cache but no different. I have restarted my pc and no different. PC is Windows 10.

I can log in to gmail using Google Chrome so I can't see that it is a Google problem. I can also log in ok on my Android phone.

Is this a Firefox issue?

Asked by brownlfb 1 unyaka odlule

Answered by brownlfb 1 unyaka odlule

  • Kusonjululiwe
  • Okugcinwe kunqolobane

Firefox will use up a lot of memory as it is opened for a longer period of time

I only opened 5 pages (fixed tabs), and only enabled two plug-ins, Proxy SwitchyOmega and AdGuard AdBlocker. The browser was always open, and the pages were static, and n… (funda kabanzi)

I only opened 5 pages (fixed tabs), and only enabled two plug-ins, Proxy SwitchyOmega and AdGuard AdBlocker. The browser was always open, and the pages were static, and nothing was playing. The strange thing is that it didn't take up much memory at the beginning, but it took up more and more memory over time. Today the system got stuck and couldn't respond (it might be that the system used virtual memory).

I used the browser's task manager, which showed that the Shared Web Process memory of several pages was very high, some as high as 4G, and the GPU memory was also higher than before.

I think this is very strange. Why does the memory usage increase exponentially after the webpage has been there for a while?

My settings and usage habits have basically not changed. I didn't have this problem before, but it has appeared in the past six months. I have updated many versions, but the problem still exists. I have always used Firefox. If it continues like this, I will be very disappointed and have to make changes.

Asked by 徜徉时光 1 unyaka odlule

Answered by 徜徉时光 1 unyaka odlule

  • Kusonjululiwe
  • Okugcinwe kunqolobane

Upgrade to version 131.0 broke my Internet Bill Pay website

I use Internet Bill Pay through my bank, and it has always worked correctly with Firefox. I have enhanced tracking protection turned off for the site secureinternetbank.… (funda kabanzi)

I use Internet Bill Pay through my bank, and it has always worked correctly with Firefox. I have enhanced tracking protection turned off for the site secureinternetbank.com and I have cookies authorized in my exceptions list. Today I got this message:

Why can't I access Bill Pay?

You might have cookies blocked or cross-site tracking prevented. Depending on what browser you're using, check your settings for these terms:

   Block third party cookies
   Cookie tracking
   Cross-site tracking

Make sure cookies are not blocked and cross-site tracking is enabled. Follow any additional instructions in your browser once you have adjusted these settings."

Bank says it hasn't changed anything, and no tweaks I tried on privacy settings fixed it. I believe it's an issue with the new version. Can you tell me how to fix it or let me know when Firefox will fix it? The site works fine in Microsoft Edge, but I'd like to avoid using Edge.

Thanks.

cps

Asked by La_Sombra 1 unyaka odlule

Answered by NoahSUMO 1 unyaka odlule

  • Kusonjululiwe
  • Okugcinwe kunqolobane

Firefox tab RAM usage increases over time when repeatedly changing an image's "src"

Hi, Not sure if this is the right place but here goes: Firefox keeps increasing it's tab RAM usage when I change the "src" property of an image programmatically for exte… (funda kabanzi)

Hi, Not sure if this is the right place but here goes:

Firefox keeps increasing it's tab RAM usage when I change the "src" property of an image programmatically for extended periods of time (1 hour or so).

I created a dummy project here: https://github.com/mvandermade/example-base64-image-memory-high-native

The code above swaps out the image "src" 20 times a second. However I seen buildups with lower frequencies but bigger images too...

Here some measurement of tab RAM usage:

Measurements Windows 10: Firefox 131 00.00h 37MB 01.15h 127MB 03.00h 228MB

Edge (latest) 00.00h 28MB 01.15h 30MB 03.00h 33MB

(Edge seems to have no memory buildup as much)

Here is a copy of the code if the repo ever goes down:

<html>
    <head>
        <script>
        function generateRandomBase64Image() {
            // Create a canvas element
            const canvas = document.createElement('canvas');
            const ctx = canvas.getContext('2d');

            // Set canvas dimensions
            canvas.width = 200;
            canvas.height = 200;

            if(ctx == null) return ""

            // Fill the canvas with a random color
            ctx.fillStyle = `#${Math.floor(Math.random() * 16777215).toString(16)}`;
            ctx.fillRect(0, 0, canvas.width, canvas.height);

            // Draw some random shapes
            for (let i = 0; i < 10; i++) {
                ctx.fillStyle = `#${Math.floor(Math.random() * 16777215).toString(16)}`;
                ctx.beginPath();
                ctx.arc(
                    Math.random() * canvas.width,
                    Math.random() * canvas.height,
                    Math.random() * 50,
                    0,
                    Math.PI * 2
                );
                ctx.fill();
            }

            // Convert the canvas to a Base64 string
            return canvas.toDataURL('image/png');
        }

        setInterval(() => {
            document.getElementById("swapper").src=generateRandomBase64Image()
        }, 50)

        </script>
    </head>
    <body>
        <img src="" id="swapper"/>
    </body>
</html>

Just a observation from my side, if I can help improve things please let me know!

Greetings,

Martijn

p.s. I also created a project in React which gives similar results: https://github.com/mvandermade/example-base64-image-memory-high

Asked by martijn.vandermade 1 unyaka odlule

Answered by cor-el 1 unyaka odlule

  • Kusonjululiwe
  • Okugcinwe kunqolobane

FireFox takes 15 seconds to load first page

When I startup FireFox, it takes ~15 seconds to show me an page. After loading, it works normal and loads pages within a second, until I completely close the browser, and… (funda kabanzi)

When I startup FireFox, it takes ~15 seconds to show me an page. After loading, it works normal and loads pages within a second, until I completely close the browser, and then the first page again takes ~15 seconds. I've been having this issue for the past few months.

- I tried disabling all my addons - Launched FireFox in troubleshoot mode - Deleted everything in DataReporting\Archived folder - Cleaned out History/Cookies and site data/Temporary cached files and pages - Tried both Default and Max protection for DNS over HTTPS - FireFox is allowed in Windows Defender firewall - Tried setting 'browser.cache.disk.enable' to FALSE - Tried changing 'Enable HTTPS-Only Mode in all windows' to 'Don’t enable HTTPS-Only Mode' - Windows and FireFox are up-to-date

None of the above saw any improvement in loading time.

Asked by Filo 1 unyaka odlule

Answered by jonzn4SUSE 1 unyaka odlule

  • Kusonjululiwe
  • Okugcinwe kunqolobane

firefox changed & firefox nolonger works for me

firefox changed and firefox nolonger lets me get my email, bank account, fidelity account, credit card account etc -- can you help me go back to my old firefox? thank you… (funda kabanzi)

firefox changed and firefox nolonger lets me get my email, bank account, fidelity account, credit card account etc -- can you help me go back to my old firefox? thank you or do I need to start using another browser?

Asked by raymar48 1 unyaka odlule

Answered by raymar48 1 unyaka odlule

  • Kusonjululiwe
  • Okugcinwe kunqolobane

Hyperlinks giving bizarre yellow box in upper right.

I have a Dropbox Paper document that I use for my bookmarks. It lists the name of the site (with link attached) and hints as to my username/password for any given site I … (funda kabanzi)

I have a Dropbox Paper document that I use for my bookmarks. It lists the name of the site (with link attached) and hints as to my username/password for any given site I use.

For years, it has worked just fine, but trying to solve a different problem, something happened (in my settings?) that renders those hyperlinks non-working. When I click on, say Facebook, it formerly took me right to FB. NOW it gives me a weird yellow box in the upper right corner that says "about:blank" in the upper left of the box, and 3 white boxes at the lower right of the yellow box "Allow" "Deny" "Close." If I click on "Allow," I get a blank page. My navigation doesn't seem to recognize the links I've placed in the Doc.

A friend on FB posted a link to a YouTube video and when I clicked on that, I got the yellow box with the proper URL and a white box option to continue. I've tried to recreate that particular box, but, apparently, once it's accepted, it's OK from there on out.

I have tried deleting the link from the Paper Doc and reinstating it, and I still get the yellow box.

What have I done and how the heck do I get rid of that yellow box?

Asked by Bosco 1 unyaka odlule

Answered by Bosco 1 unyaka odlule

  • Kusonjululiwe
  • Okugcinwe kunqolobane

Firefox 131 and Billpay no longer compatible

Since the recent update to Firefox 131, I can no longer use the Billpay option of my TD Bank account. I am able to log into my account without any problems and use all of… (funda kabanzi)

Since the recent update to Firefox 131, I can no longer use the Billpay option of my TD Bank account. I am able to log into my account without any problems and use all of the options except for Billpay. I want to add that I know I am not alone with this problem as I have seen several others with the same problem but with different banks. It is the Billpay option which no longer works.

As I said, the bank site is fine until I click on "Billpay", Then I get this: begin quote: "Why can't I access Bill Pay?

You might have cookies blocked or cross-site tracking prevented. Depending on what browser you're using, check your settings for these terms:

   Block third party cookies
   Cookie tracking
   Cross-site tracking

Make sure cookies are not blocked and cross-site tracking is enabled. Follow any additional instructions in your browser once you have adjusted these settings.

Copyright © 2024, TD Bank, N. A.. All rights reserved." end quote.

I have disabled uBlock Origin, Enhanced Tracking, tried Private Mode, Troubleshooting Mode to no avail.

I have also cleared cookies & data. This appears specific to v131. Any suggestions??

Asked by Straggler 1 unyaka odlule

Answered by dmehic 1 unyaka odlule

  • Kusonjululiwe
  • Okugcinwe kunqolobane

Website fails to load

There is a website https //secure.exeloncorp.com/login that will not load using FireFox. It will load using Google Chrome. Is this a function of the Website or FireFox? … (funda kabanzi)

There is a website https //secure.exeloncorp.com/login that will not load using FireFox. It will load using Google Chrome. Is this a function of the Website or FireFox? Is there a setting in FireFox that will fix it?

Asked by juxizoza 1 unyaka odlule

Answered by juxizoza 1 unyaka odlule

  • Kusonjululiwe
  • Okugcinwe kunqolobane

Continuing Problem using websites

I am having a continuing problem using fire fox to access websites. I go to a site to use one of their tools and have issues using or logging in to their site. I will g… (funda kabanzi)

I am having a continuing problem using fire fox to access websites. I go to a site to use one of their tools and have issues using or logging in to their site. I will go to a site where an accept cookies banner should pop up to continue and nothing pops up so I can't continue. I have tried the disable Enhanced Protection with no change in results. If I use Duck Duck Go, or Edge everything works. Firefox is my default browser, but it appears that you have made a change that is now impacting my ability to use websites. Sometimes things work if I go into Troubleshooting mode, but I can't determine where the problem is. I use Norton as my anti-virus and internet security and have turned it off as part of my troubleshooting but that does not help.

Please provide guidance.

Thank you.

Asked by aviatorone 1 unyaka odlule

Answered by aviatorone 1 unyaka odlule

  • Ikhiyiwe
  • Okugcinwe kunqolobane

Lost folders in Thunderbird

duplicate of /questions/1471321 thread Hello! A very important email folder in my Thunderbird just vanished. I didn't touch anything! My email was downloading very slow… (funda kabanzi)

duplicate of /questions/1471321 thread

Hello!

A very important email folder in my Thunderbird just vanished. I didn't touch anything! My email was downloading very slowly and so I closed the entire Thunderbird application. When I re-opened it, the folder was gone. Everything else is there as before - all other folders, my inbox etc.

I have no idea what happened or where the folder went. I can't find anything online that addresses the problem or how to solve it. I'm very much a tech novice. I need a solution that a 5 year old could navigate lol

S.O.S. Cara

Asked by a.sabinal 1 unyaka odlule

Last reply by markwarner22 1 unyaka odlule

  • Kusonjululiwe
  • Okugcinwe kunqolobane

Mistyping cause by non-character notation (e.g., dot, comma, semi-colon, colon, quotation mark etc.)

The problem I encounter has happened since I begin to use Firefox on Windows 11. The same problem happened to my Macbook as well, but a workaround is available. While wit… (funda kabanzi)

The problem I encounter has happened since I begin to use Firefox on Windows 11. The same problem happened to my Macbook as well, but a workaround is available. While with Windows 11, I can't find the solution anywhere on the web. Whenever I type on the browser, if I write a non-character notation right behind the word (like "this,"), the word would usually auto delete itself or sometimes, the word clone itself out (e.g, wordword, thisthi, etc.) or it deletes a small section of words right behind that non-char. I don't have insert turning on. I am quite uncertain whether you can reproduce this error on your laptop (for me, I have been through 2 windows 11 laptop and this error still persist). This error seems to only occurs for Vietnamese (Telex and VNI) default keyboard from Microsoft, Russian and English work fine. I suspect that it is caused by Microsoft Vietnamese, but I have unchecked all kind of spelling checking on settings. So should I use a third-party Vietnamese language typing for this situation or does it caused by something else?

Asked by dinhthanhha2005 1 unyaka odlule

Answered by dinhthanhha2005 1 unyaka odlule

  • Kusonjululiwe
  • Okugcinwe kunqolobane

websites are not showing graphics after installing and uninstalling an add on

Hello. I installed the add on Tranquility Reader, found I did not like it, and uninstalled it. I have restarted my Firefox, as well as my PC, several times, but I still d… (funda kabanzi)

Hello. I installed the add on Tranquility Reader, found I did not like it, and uninstalled it. I have restarted my Firefox, as well as my PC, several times, but I still do not have graphics back like they were before. Am I missing something? Or has my whole system just gone on to another world??? So Aggravated! TIA Christie

Asked by Christie S 1 unyaka odlule

Answered by jscher2000 - Support Volunteer 1 unyaka odlule

  • Kusonjululiwe
  • Okugcinwe kunqolobane

Can't sign into one of my email accounts with FF, but MS Edge works fine

I've been using FF since release #3 and like it a lot since I cut my teeth using NetScape. The past few days FF will not open one of my email accounts. When I click on … (funda kabanzi)

I've been using FF since release #3 and like it a lot since I cut my teeth using NetScape. The past few days FF will not open one of my email accounts. When I click on login, it brings up the logging on page and then just starts blinking and will not sign me on. If I use MS Edge to sign on it works fine. The email account has been working fine for many years so don't know what to do. I've deleted recent history, but that does not help. Any ideas will be appreciated as I like FF and don't like to have to use two different browsers to do my daily tasks. Thanks in advance for any help you can suggest. I'm currently using release 131.0.3 with W-10 on a desk top PC with DSL from my phone company with the email account with their ID. My phone company does no know about or support FF.

Asked by donP22 1 unyaka odlule

Answered by donP22 1 unyaka odlule

  • Kusonjululiwe
  • Okugcinwe kunqolobane

For some reason my .mozilla directory is more than 100gigabytes! What should i do to reduce it

So i use garuda linux(not sure if necessary but still telling). The ".mozilla" folder is about 134 GB! I have browsed it a bit and found a lot of this folders "vuzpdtyn.d… (funda kabanzi)

So i use garuda linux(not sure if necessary but still telling). The ".mozilla" folder is about 134 GB! I have browsed it a bit and found a lot of this folders "vuzpdtyn.default-release-backup-crashrecovery", "tor50voj.default-backup-crashrecovery-", "profile-somestuff-backup-crashrecovery" Is it safe to delete the old ones from this?

Asked by aryasonalk 1 unyaka odlule

Answered by ThePillenwerfer 1 unyaka odlule

  • Kusonjululiwe
  • Okugcinwe kunqolobane

Video players don't work

So I can open up Youtube no problem, scroll around and even hover over a video for the preview. However the moment I click on a video the tab will crash. I check if this … (funda kabanzi)

So I can open up Youtube no problem, scroll around and even hover over a video for the preview. However the moment I click on a video the tab will crash. I check if this was the case for other video streaming sites. HBO Max has the same issue while Amazon prime doesn't crash however has a message saying there is a problem with the video player. Now I checked if videos can work on another browser (Microsoft Edge), and there are no issues. I have cleared the cache, disabled extensions, checked for updates [update to date: 132.0.1 (64-bit)], restarted Firefox from troubleshooting mode, enabled autoplay, checked if videos work in private mode, updated my graphics card driver, and even checked if Firefox's volume is muted (its not).


Crash ID: 145d84d4-c11c-41a8-9534-e00ff0241105 Signature: [@ std::basic_string<T>::_Construct ]

https://crash-stats.mozilla.org/report/index/145d84d4-c11c-41a8-9534-e00ff0241105#tab-debug

Asked by thekim0517 1 unyaka odlule

Answered by thekim0517 1 unyaka odlule

  • Kusonjululiwe
  • Okugcinwe kunqolobane

Google Messages stopped working on Firefox today

I've been using Android/google messages on web (messages.google.com/web) for years with Firefox with no issues. Starting today, the page will show the logo for about 10-2… (funda kabanzi)

I've been using Android/google messages on web (messages.google.com/web) for years with Firefox with no issues. Starting today, the page will show the logo for about 10-20 seconds, then loads a blank page. I've tried unpairing, restarting my computer and phone, and restarting firefox. Was there a new update or something that might explain this? Any other thoughts?

Asked by jonathanpberry 1 unyaka odlule

Answered by jonzn4SUSE 1 unyaka odlule

  • Kusonjululiwe
  • Okugcinwe kunqolobane

Suddenly unable to log in to my router with Firefox...

I am unable to log in to my router with Firefox. This is a very recent development. When I go to the router's address, it says Unable to connect. I am on a Mac Studio … (funda kabanzi)

I am unable to log in to my router with Firefox. This is a very recent development. When I go to the router's address, it says Unable to connect. I am on a Mac Studio (OS 15.1), running Firefox 132.0.1. The same thing is happening with Edge, but I can get to the router just fine with Safari and Chrome.

If anyone know why this is happening, your input will be greatly appreciated. Thanks in advance.

P.S. I did make some changes a couple of weeks ago in about:config, but I don't know what settings I changed. I was trying to find out why the computer was constantly accessing my optical drives (I thought it was when a web browser was open, but it turned out to be all of the time). Below is the troubleshooting information:

Application Basics


Name: Firefox Version: 132.0.1 Build ID: 20241103194048 Distribution ID: Update Channel: release User Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:132.0) Gecko/20100101 Firefox/132.0 OS: Darwin 24.1.0 Darwin Kernel Version 24.1.0: Thu Oct 10 21:03:11 PDT 2024; root:xnu-11215.41.3~2/RELEASE_ARM64_T6020 Rosetta Translated: false Multiprocess Windows: 1/1 Fission Windows: 1/1 Enabled by default Remote Processes: 14 Enterprise Policies: Inactive Google Location Service Key: Found Google Safebrowsing Key: Found Mozilla Location Service Key: Found Safe Mode: false Memory Size (RAM): 96.0 GB Disk Space Available: 956 GB

Crash Reports for the Last 3 Days


Firefox Features


Name: Firefox Screenshots Version: 39.0.1 ID: screenshots@mozilla.org

Name: Form Autofill Version: 1.0.1 ID: formautofill@mozilla.org

Name: Picture-In-Picture Version: 1.0.0 ID: pictureinpicture@mozilla.org

Name: Web Compatibility Interventions Version: 133.2.0 ID: webcompat@mozilla.org

Name: WebCompat Reporter Version: 2.1.0 ID: webcompat-reporter@mozilla.org

Remote Features


bug-1693420-rollout-sponsored-top-sites-rollout-release-84-100: active bug-1766618-rollout-disable-websocket-over-http2-release-91-100: active bug-1802286-rollout-fix-webcompat-shim-breakage-release-103-107: active

Remote Processes


Type: Isolated Web Content Count: 6

Type: Preallocated Count: 3

Type: RDD Count: 1

Type: Socket Count: 1

Type: Extension Count: 1

Type: Utility AppleMedia Count: 1

Type: Utility JavaScript Oracle Count: 1

Add-ons


Name: Add-ons Search Detection Type: extension Version: 2.0.0 Enabled: true ID: addons-search-detection@mozilla.com

Name: Amazon.com Type: extension Version: 1.8 Enabled: true ID: amazondotcom@search.mozilla.org

Name: Bing Type: extension Version: 1.7 Enabled: true ID: bing@search.mozilla.org

Name: DuckDuckGo Type: extension Version: 1.5 Enabled: true ID: ddg@search.mozilla.org

Name: DuckDuckGo Privacy Essentials Type: extension Version: 2024.10.16 Enabled: true ID: jid1-ZAdIEUB7XOzOJw@jetpack

Name: eBay Type: extension Version: 1.5 Enabled: true ID: ebay@search.mozilla.org

Name: F.B Purity - Cleans up Facebook Type: extension Version: 37.1.3.0 Enabled: true ID: fbpElectroWebExt@fbpurity.com

Name: Google Type: extension Version: 1.5 Enabled: true ID: google@search.mozilla.org

Name: New Tab Override Type: extension Version: 16.0.1 Enabled: true ID: newtaboverride@agenedia.com

Name: Print Preview Type: extension Version: 1.5.5 Enabled: true ID: {8711aa11-2355-411a-ba8b-5891c39ad9dc}

Name: uBlock Origin Type: extension Version: 1.60.0 Enabled: true ID: uBlock0@raymondhill.net

Name: Video DownloadHelper Type: extension Version: 9.1.0.44 Enabled: true ID: {b9db16a4-6edc-47ec-a1f4-b86292ed211d}

Name: Wikipedia (en) Type: extension Version: 1.4 Enabled: true ID: wikipedia@search.mozilla.org

Name: esafox Type: theme Version: 2.0 Enabled: true ID: {b526b65f-3165-4dcc-a534-3474d1de766b}

Name: Dark Type: theme Version: 1.3.2 Enabled: false ID: firefox-compact-dark@mozilla.org

Name: Firefox Alpenglow Type: theme Version: 1.4 Enabled: false ID: firefox-alpenglow@mozilla.org

Name: Light Type: theme Version: 1.3 Enabled: false ID: firefox-compact-light@mozilla.org

Name: System theme — auto Type: theme Version: 1.4.1 Enabled: false ID: default-theme@mozilla.org

Legacy User Stylesheets


Active: false Stylesheets: No stylesheets found

Graphics


Features Window Device Pixel Ratios: 2 Compositing: WebRender (Software) Font Visibility Debug Info: macOS Platform Asynchronous Pan/Zoom: wheel input enabled; scrollbar drag enabled; keyboard enabled; autoscroll enabled; smooth pinch-zoom enabled WebGL 1 Driver WSI Info: outOfProcess: false inProcess: true CGL WebGL 1 Driver Renderer: Apple -- Apple M2 Max WebGL 1 Driver Version: 4.1 Metal - 89.3 WebGL 1 Driver Extensions: GL_ARB_blend_func_extended GL_ARB_draw_buffers_blend GL_ARB_draw_indirect GL_ARB_ES2_compatibility GL_ARB_explicit_attrib_location GL_ARB_gpu_shader_fp64 GL_ARB_gpu_shader5 GL_ARB_instanced_arrays GL_ARB_internalformat_query GL_ARB_occlusion_query2 GL_ARB_sample_shading GL_ARB_sampler_objects GL_ARB_separate_shader_objects GL_ARB_shader_bit_encoding GL_ARB_shader_subroutine GL_ARB_shading_language_include GL_ARB_tessellation_shader GL_ARB_texture_buffer_object_rgb32 GL_ARB_texture_cube_map_array GL_ARB_texture_gather GL_ARB_texture_query_lod GL_ARB_texture_rgb10_a2ui GL_ARB_texture_storage GL_ARB_texture_swizzle GL_ARB_timer_query GL_ARB_transform_feedback2 GL_ARB_transform_feedback3 GL_ARB_vertex_attrib_64bit GL_ARB_vertex_type_2_10_10_10_rev GL_ARB_viewport_array GL_EXT_debug_label GL_EXT_debug_marker GL_EXT_framebuffer_multisample_blit_scaled GL_EXT_texture_compression_s3tc GL_EXT_texture_filter_anisotropic GL_EXT_texture_sRGB_decode GL_APPLE_client_storage GL_APPLE_container_object_shareable GL_APPLE_flush_render GL_APPLE_rgb_422 GL_APPLE_row_bytes GL_APPLE_texture_range GL_NV_texture_barrier WebGL 1 Extensions: ANGLE_instanced_arrays EXT_blend_minmax EXT_color_buffer_half_float EXT_depth_clamp EXT_float_blend EXT_frag_depth EXT_shader_texture_lod EXT_sRGB EXT_texture_compression_rgtc EXT_texture_filter_anisotropic MOZ_debug OES_element_index_uint OES_fbo_render_mipmap OES_standard_derivatives OES_texture_float OES_texture_float_linear OES_texture_half_float OES_texture_half_float_linear OES_vertex_array_object WEBGL_color_buffer_float WEBGL_compressed_texture_s3tc WEBGL_compressed_texture_s3tc_srgb WEBGL_debug_renderer_info WEBGL_debug_shaders WEBGL_depth_texture WEBGL_draw_buffers WEBGL_lose_context WEBGL_provoking_vertex WebGL 2 Driver WSI Info: outOfProcess: false inProcess: true CGL WebGL 2 Driver Renderer: Apple -- Apple M2 Max WebGL 2 Driver Version: 4.1 Metal - 89.3 WebGL 2 Driver Extensions: GL_ARB_blend_func_extended GL_ARB_draw_buffers_blend GL_ARB_draw_indirect GL_ARB_ES2_compatibility GL_ARB_explicit_attrib_location GL_ARB_gpu_shader_fp64 GL_ARB_gpu_shader5 GL_ARB_instanced_arrays GL_ARB_internalformat_query GL_ARB_occlusion_query2 GL_ARB_sample_shading GL_ARB_sampler_objects GL_ARB_separate_shader_objects GL_ARB_shader_bit_encoding GL_ARB_shader_subroutine GL_ARB_shading_language_include GL_ARB_tessellation_shader GL_ARB_texture_buffer_object_rgb32 GL_ARB_texture_cube_map_array GL_ARB_texture_gather GL_ARB_texture_query_lod GL_ARB_texture_rgb10_a2ui GL_ARB_texture_storage GL_ARB_texture_swizzle GL_ARB_timer_query GL_ARB_transform_feedback2 GL_ARB_transform_feedback3 GL_ARB_vertex_attrib_64bit GL_ARB_vertex_type_2_10_10_10_rev GL_ARB_viewport_array GL_EXT_debug_label GL_EXT_debug_marker GL_EXT_framebuffer_multisample_blit_scaled GL_EXT_texture_compression_s3tc GL_EXT_texture_filter_anisotropic GL_EXT_texture_sRGB_decode GL_APPLE_client_storage GL_APPLE_container_object_shareable GL_APPLE_flush_render GL_APPLE_rgb_422 GL_APPLE_row_bytes GL_APPLE_texture_range GL_NV_texture_barrier WebGL 2 Extensions: EXT_color_buffer_float EXT_depth_clamp EXT_float_blend EXT_texture_compression_rgtc EXT_texture_filter_anisotropic MOZ_debug OES_draw_buffers_indexed OES_texture_float_linear WEBGL_compressed_texture_s3tc WEBGL_compressed_texture_s3tc_srgb WEBGL_debug_renderer_info WEBGL_debug_shaders WEBGL_lose_context WEBGL_provoking_vertex Target Frame Rate: 60 WebGPU Default Adapter: { "navigator.gpu": null } WebGPU Fallback Adapter: { "navigator.gpu": null } GPU #1 Active: Yes Vendor ID: 0x106b RAM: 0

Diagnostics AzureCanvasBackend: skia AzureContentBackend: skia AzureFallbackCanvasBackend: skia CMSOutputProfile: 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 Display0: 4096x2304@0Hz scales:2.000000|2.000000 DisplayCount: 1 Font Visibility Debug Info: macOS Platform Decision Log HW_COMPOSITING: default: available, user: disabled, Disabled by layers.acceleration.disabled=true, Blocklisted; failure code FEATURE_FAILURE_COMP_PREF OPENGL_COMPOSITING: default: unavailable, Hardware compositing is disabled, Blocklisted; failure code FEATURE_FAILURE_OPENGL_NEED_HWCOMP WEBRENDER: default: available, runtime: unavailable-no-hw-compositing, Hardware compositing is disabled, Blocklisted; failure code FEATURE_FAILURE_WEBRENDER_NEED_HWCOMP WEBRENDER_COMPOSITOR: default: available, WEBRENDER_PARTIAL: default: disabled, User disabled via pref, Blocklisted; failure code FEATURE_FAILURE_DISABLED WEBRENDER_SHADER_CACHE: default: disabled, Disabled by default, Blocklisted; failure code FEATURE_FAILURE_DISABLED runtime: unavailable, WebRender disabled, Blocklisted; failure code FEATURE_FAILURE_WR_DISABLED WEBRENDER_OPTIMIZED_SHADERS: default: available, runtime: unavailable, WebRender disabled, Blocklisted; failure code FEATURE_FAILURE_WR_DISABLED WEBRENDER_ANGLE: default: available, env: unavailable, OS not supported, Blocklisted; failure code FEATURE_FAILURE_OS_NOT_SUPPORTED WEBRENDER_DCOMP_PRESENT: default: available, user: disabled, User disabled via pref, Blocklisted; failure code FEATURE_FAILURE_DCOMP_PREF_DISABLED env: unavailable, Requires GPU process, Blocklisted; failure code FEATURE_FAILURE_NO_GPU_PROCESS runtime: unavailable, Requires ANGLE, Blocklisted; failure code FEATURE_FAILURE_DCOMP_NOT_ANGLE WEBRENDER_SCISSORED_CACHE_CLEARS: default: available, WEBGPU: default: available, runtime: blocked, WebGPU cannot be enabled in release or beta, Blocklisted; failure code WEBGPU_DISABLE_RELEASE_OR_BETA VP8_HW_DECODE: default: available, VP9_HW_DECODE: default: available, BACKDROP_FILTER: default: available, CANVAS_RENDERER_THREAD: default: available, ACCELERATED_CANVAS2D: default: available, env: blocked, Disabled by Software WebRender, Blocklisted; failure code FEATURE_FAILURE_DISABLED_BY_SOFTWARE_WEBRENDER REMOTE_CANVAS: default: disabled, Disabled via pref, Blocklisted; failure code FEATURE_FAILURE_DISABLED env: unavailable-no-gpu-process, Disabled without GPU process, Blocklisted; failure code FEATURE_REMOTE_CANVAS_NO_GPU_PROCESS runtime: blocked, Platform not supported, Blocklisted; failure code FEATURE_REMOTE_CANVAS_NOT_WINDOWS



Media


Audio Backend: audiounit-rust Max Channels: 2 Preferred Sample Rate: 48000 Roundtrip latency (standard deviation): 18.31ms (0.01) Codec Support Information: Codec Name: Software Decoding, Hardware Decoding H264: Supported, Supported VP9: Supported, Supported VP8: Supported, Unsupported AV1: Supported, Unsupported HEVC: Unsupported, Unsupported AAC: Supported, Unsupported MP3: Supported, Unsupported Opus: Supported, Unsupported Vorbis: Supported, Unsupported FLAC: Supported, Unsupported Wave: Supported, Unsupported Output Devices Name: Group, Vendor, State, Preferred, Format, Channels, Rate, Latency Mac Studio Speakers: builtin-internal-mic|spk, Apple Inc., Enabled, None, default: F32LE, support: S16LE S16BE F32LE F32BE, 2, default: 48000, support: 44100 - 96000, 256 - 4337 External Headphones: builtin-external-mic|hdpn, Apple Inc., Enabled, All, default: F32LE, support: S16LE S16BE F32LE F32BE, 2, default: 48000, support: 44100 - 96000, 111 - 4192 LG UltraFine Display Audio: LG UltraFine Display Audio:043E:9A66, LG Electronics Inc., Enabled, None, default: F32LE, support: S16LE S16BE F32LE F32BE, 2, default: 48000, support: 48000 - 48000, 63 - 4144 OWC Thunderbolt 3 Audio Device: OWC Thunderbolt 3 Audio Device:1E91:4001, Other World Computing, Enabled, None, default: F32LE, support: S16LE S16BE F32LE F32BE, 2, default: 48000, support: 44100 - 96000, 63 - 4144 USB Advanced Audio Device: USB Advanced Audio Device:0D8C:0022, C-Media Electronics Inc., Enabled, None, default: F32LE, support: S16LE S16BE F32LE F32BE, 2, default: 48000, support: 8000 - 96000, 63 - 4144 Input Devices Name: Group, Vendor, State, Preferred, Format, Channels, Rate, Latency LG UltraFine Display Audio: LG UltraFine Display Audio:043E:9A66, LG Electronics Inc., Enabled, All, default: F32LE, support: S16LE S16BE F32LE F32BE, 1, default: 48000, support: 48000 - 48000, 63 - 4144 OWC Thunderbolt 3 Audio Device: OWC Thunderbolt 3 Audio Device:1E91:4001, Other World Computing, Enabled, None, default: F32LE, support: S16LE S16BE F32LE F32BE, 1, default: 48000, support: 8000 - 48000, 63 - 4144 HD Webcam C615: HD Webcam C615:046D:082C, Unknown Manufacturer, Enabled, None, default: F32LE, support: S16LE S16BE F32LE F32BE, 1, default: 48000, support: 16000 - 48000, 63 - 4144 USB Advanced Audio Device: USB Advanced Audio Device:0D8C:0022, C-Media Electronics Inc., Enabled, None, default: F32LE, support: S16LE S16BE F32LE F32BE, 1, default: 48000, support: 8000 - 48000, 63 - 4144

Enumerate database Content Decryption Modules Information Key System Name: Video Robustness, Audio Robustness, Capabilities, Clear Lead, HDCP 2.2 Compatible org.w3.clearkey: {"persistent":"Optional","distinctive":"NotAllowed","sessionType":"[Temporary]","codec":{"decodingAndDecrypting":[],"decryptingOnly":["h264(all)","aac(all)","flac(all)","opus(all)","vp9(all)","av1(all)","vorbis(all)","vp8(all)"]}}, No, No com.widevine.alpha: SW_SECURE_CRYPTO,SW_SECURE_DECODE, SW_SECURE_CRYPTO, {"persistent":"Optional","distinctive":"NotAllowed","sessionType":"[Temporary]","codec":{"decodingAndDecrypting":["h264(all)","vp9(all)","av1(all)","vp8(all)"],"decryptingOnly":["aac(all)","flac(all)","opus(all)","vorbis(all)"]}}, Yes, No

Environment Variables


MOZ_CRASHREPORTER_EVENTS_DIRECTORY: /Users/wakkowarner/Library/Application Support/Firefox/Profiles/ixdac2yz.default-release/crashes/events MOZ_CRASHREPORTER_RESTART_ARG_1: MOZ_CRASHREPORTER_DATA_DIRECTORY: /Users/wakkowarner/Library/Application Support/Firefox/Crash Reports MOZ_CRASHREPORTER_PING_DIRECTORY: /Users/wakkowarner/Library/Application Support/Firefox/Pending Pings MOZ_CRASHREPORTER_STRINGS_OVERRIDE: /Applications/Firefox.app/Contents/Resources/browser/crashreporter-override.ini MOZ_LAUNCHED_CHILD: MOZ_APP_SILENT_START: XRE_PROFILE_PATH: XRE_PROFILE_LOCAL_PATH: XRE_START_OFFLINE: XRE_BINARY_PATH: XRE_RESTARTED_BY_PROFILE_MANAGER:

Experimental Features


Sidebar (sidebar.revamp): false Vertical tabs (sidebar.verticalTabs): false AI chatbot (browser.ml.chat.enabled): false Picture-in-Picture: auto-open on tab switch (media.videocontrols.picture-in-picture.enable-when-switching-tabs.enabled): false Address Bar: show results during IME composition (browser.urlbar.keepPanelOpenDuringImeComposition): false WebRTC Global Mute Toggles (privacy.webrtc.globalMuteToggles): false Media: JPEG XL (image.jxl.enabled): false CSS: Masonry Layout (layout.css.grid-template-masonry-value.enabled): false Web API: WebGPU (dom.webgpu.enabled): false Developer Tools: Service Worker debugging (devtools.debugger.features.windowless-service-workers): false

Remote Settings


Status: OK Not working

Status: 2024-11-11T15:52:00.000Z

Status: "1731337031516"

Status: Status Date Infos successMon Nov 11 2024 07:57:11 GMT-0700 (Mountain Standard Time){}successMon Nov 11 2024 05:36:10 GMT-0700 (Mountain Standard Time){}successSun Nov 10 2024 17:01:04 GMT-0700 (Mountain Standard Time){}successSun Nov 10 2024 13:57:14 GMT-0700 (Mountain Standard Time){}successSun Nov 10 2024 11:53:01 GMT-0700 (Mountain Standard Time){}successSun Nov 10 2024 07:57:44 GMT-0700 (Mountain Standard Time){}successSun Nov 10 2024 01:57:09 GMT-0700 (Mountain Standard Time){}successSat Nov 09 2024 18:13:44 GMT-0700 (Mountain Standard Time){}successSat Nov 09 2024 17:01:03 GMT-0700 (Mountain Standard Time){}successSat Nov 09 2024 07:57:08 GMT-0700 (Mountain Standard Time){} Date: success Infos: Mon Nov 11 2024 07:57:11 GMT-0700 (Mountain Standard Time) {} success Mon Nov 11 2024 05:36:10 GMT-0700 (Mountain Standard Time) {} success Sun Nov 10 2024 17:01:04 GMT-0700 (Mountain Standard Time) {} success Sun Nov 10 2024 13:57:14 GMT-0700 (Mountain Standard Time) {} success Sun Nov 10 2024 11:53:01 GMT-0700 (Mountain Standard Time) {} success Sun Nov 10 2024 07:57:44 GMT-0700 (Mountain Standard Time) {} success Sun Nov 10 2024 01:57:09 GMT-0700 (Mountain Standard Time) {} success Sat Nov 09 2024 18:13:44 GMT-0700 (Mountain Standard Time) {} success Sat Nov 09 2024 17:01:03 GMT-0700 (Mountain Standard Time) {} success Sat Nov 09 2024 07:57:08 GMT-0700 (Mountain Standard Time) {}

Status: success Date: Mon Nov 11 2024 07:57:11 GMT-0700 (Mountain Standard Time) Infos: {}

Status: success Date: Mon Nov 11 2024 05:36:10 GMT-0700 (Mountain Standard Time) Infos: {}

Status: success Date: Sun Nov 10 2024 17:01:04 GMT-0700 (Mountain Standard Time) Infos: {}

Status: success Date: Sun Nov 10 2024 13:57:14 GMT-0700 (Mountain Standard Time) Infos: {}

Status: success Date: Sun Nov 10 2024 11:53:01 GMT-0700 (Mountain Standard Time) Infos: {}

Status: success Date: Sun Nov 10 2024 07:57:44 GMT-0700 (Mountain Standard Time) Infos: {}

Status: success Date: Sun Nov 10 2024 01:57:09 GMT-0700 (Mountain Standard Time) Infos: {}

Status: success Date: Sat Nov 09 2024 18:13:44 GMT-0700 (Mountain Standard Time) Infos: {}

Status: success Date: Sat Nov 09 2024 17:01:03 GMT-0700 (Mountain Standard Time) Infos: {}

Status: success Date: Sat Nov 09 2024 07:57:08 GMT-0700 (Mountain Standard Time) Infos: {}

Remote Experiments


Important Modified Preferences


accessibility.typeaheadfind.flashBar: 0 browser.cache.disk_cache_ssl: false browser.cache.disk.amount_written: 1795117 browser.cache.disk.capacity: 1048576 browser.cache.disk.enable: false browser.cache.disk.filesystem_reported: 1 browser.cache.disk.hashstats_reported: 1 browser.contentblocking.category: standard browser.download.useDownloadDir: false browser.search.region: US browser.search.suggest.enabled: false browser.sessionstore.interval: 720000 browser.sessionstore.upgradeBackup.latestBuildID: 20240923135042 browser.startup.homepage: www.google.com browser.startup.homepage_override.buildID: 20241103194048 browser.startup.homepage_override.mstone: 132.0.1 browser.toolbars.bookmarks.visibility: always browser.urlbar.matchBuckets: general:5,suggestion:Infinity browser.urlbar.placeholderName: DuckDuckGo browser.urlbar.placeholderName.private: DuckDuckGo browser.urlbar.quicksuggest.migrationVersion: 2 browser.urlbar.quicksuggest.scenario: offline browser.urlbar.resultBuckets: {"children":[{"maxResultCount":1,"children":[{"group":"heuristicTest"},{"group":"heuristicExtension"},{"group":"heuristi browser.urlbar.resultGroups: {"children":[{"maxResultCount":1,"children":[{"group":"heuristicTest"},{"group":"heuristicExtension"},{"group":"heuristi browser.urlbar.showSearchSuggestionsFirst: false browser.urlbar.suggest.bookmark: false browser.urlbar.suggest.engines: false browser.urlbar.suggest.history: false browser.urlbar.suggest.openpage: false browser.urlbar.suggest.quicksuggest.nonsponsored: false browser.urlbar.suggest.quicksuggest.sponsored: false browser.urlbar.suggest.searches: false browser.urlbar.suggest.topsites: false browser.urlbar.tipShownCount.tabToSearch: 2 doh-rollout.balrog-migration-done: true doh-rollout.doneFirstRun: true doh-rollout.doorhanger-decision: UIOk doh-rollout.doorhanger-shown: true doh-rollout.home-region: US doh-rollout.mode: 0 doh-rollout.self-enabled: true doh-rollout.uri: https://mozilla.cloudflare-dns.com/dns-query dom.forms.autocomplete.formautofill: true extensions.formautofill.addresses.usage.hasEntry: true extensions.formautofill.creditCards.enabled: false extensions.formautofill.creditCards.reauth.optout: MDIEEPgAAAAAAAAAAAAAAAAAAAEwFAYIKoZIhvcNAwcECIggs0vQQktZBAiFPyv+mD3CfQ== extensions.formautofill.creditCards.used: 2 extensions.formautofill.firstTimeUse: false extensions.lastAppVersion: 132.0.1 font.internaluseonly.changed: true idle.lastDailyNotification: 1731355011 layers.acceleration.disabled: true media.autoplay.allow-extension-background-pages: false media.autoplay.block-event.enabled: true media.autoplay.default: 5 media.gmp-gmpopenh264.abi: aarch64-gcc3 media.gmp-gmpopenh264.hashValue: 391efb184373d533713a9e99a9e63c3bbaf614e8d8bdfdd84d4d5e53b9a737e75032187309dd00e58b58bb1033ab68d199f994744f6add57dd08f5fb media.gmp-gmpopenh264.lastDownload: 1729201805 media.gmp-gmpopenh264.lastDownloadFailed: 1657204190 media.gmp-gmpopenh264.lastDownloadFailReason: Error: Failed downloading via ServiceRequest, status: 0, reason: error media.gmp-gmpopenh264.lastInstallStart: 1729201805 media.gmp-gmpopenh264.lastUpdate: 1729201805 media.gmp-gmpopenh264.version: 2.3.2 media.gmp-manager.buildID: 20241103194048 media.gmp-manager.lastCheck: 1731353840 media.gmp-manager.lastEmptyCheck: 1731353840 media.gmp-widevinecdm.abi: aarch64-gcc3 media.gmp-widevinecdm.hashValue: b960132db31c5ca04f678992a970d415deae3dc8f90b37c61d2d4b67e7a41588f69c08c59476f0a92c765f0d18733bc90ee0786eece936122007a51e media.gmp-widevinecdm.lastDownload: 1729201806 media.gmp-widevinecdm.lastInstallStart: 1729201805 media.gmp-widevinecdm.lastUpdate: 1729201806 media.gmp-widevinecdm.version: 4.10.2830.0 media.gmp.storage.version.observed: 1 media.hardwaremediakeys.enabled: false media.videocontrols.picture-in-picture.video-toggle.has-used: true network.dns.disablePrefetch: true network.http.speculative-parallel-limit: 0 network.predictor.enabled: false network.prefetch-next: false network.protocol-handler.external.mailto: false network.trr.blocklist_cleanup_done: true places.database.lastMaintenance: 1731355011 places.history.enabled: false places.history.expiration.transient_current_max_pages: 74122 plugin.flash.lastmod_hi: 374 plugin.flash.lastmod_lo: 1137048996 privacy.bounceTrackingProtection.hasMigratedUserActivationData: true privacy.clearHistory.siteSettings: true privacy.clearOnShutdown_v2.cookiesAndStorage: false privacy.clearOnShutdown_v2.downloads: false privacy.clearOnShutdown.cookies: false privacy.clearOnShutdown.formdata: false privacy.clearOnShutdown.sessions: false privacy.cpd.offlineApps: true privacy.cpd.sessions: false privacy.cpd.siteSettings: true privacy.donottrackheader.enabled: true privacy.history.custom: true privacy.purge_trackers.date_in_cookie_database: 0 privacy.purge_trackers.last_purge: 1688395764879 privacy.resistFingerprinting.autoDeclineNoUserInputCanvasPrompts: false privacy.resistFingerprinting.randomDataOnCanvasExtract: false privacy.resistFingerprinting.reduceTimerPrecision.jitter: false privacy.sanitize.clearOnShutdown.hasMigratedToNewPrefs2: true privacy.sanitize.cpd.hasMigratedToNewPrefs2: true privacy.sanitize.pending: [{"id":"shutdown","itemsToClear":["cache","historyFormDataAndDownloads"],"options":{}},{"id":"newtab-container","itemsTo privacy.sanitize.sanitizeOnShutdown: true privacy.sanitize.timeSpan: 0 security.oskeystore.test.encrypted: NEEB1RoVoPev0dny/NgldAZ+sApfDs2TYFbsOlMFWk4= security.oskeystore.test.label: c72a6fe4-d963-4caf-9632-adda3696c149 security.remote_settings.crlite_filters.checked: 1656528206 security.remote_settings.intermediates.checked: 1656528206 security.sandbox.content.tempDirSuffix: b8305130-9720-5b48-a173-a13e4db5dca4 security.sandbox.plugin.tempDirSuffix: 1fd138e9-bde4-3b49-b3b7-bc915952a28f services.sync.declinedEngines: services.sync.engine.addresses.available: true signon.autofillForms: false signon.firefoxRelay.feature: disabled signon.generation.enabled: false signon.importedFromSqlite: true signon.management.page.os-auth.optout: MDIEEPgAAAAAAAAAAAAAAAAAAAEwFAYIKoZIhvcNAwcECNqVZj3ZQhCOBAiZh4wwtpv1HA== signon.usage.hasEntry: true signon.usage.lastUsed: 1605415177 storage.vacuum.last.content-prefs.sqlite: 1731355011 storage.vacuum.last.index: 1 storage.vacuum.last.places.sqlite: 1729908217

Important Locked Preferences


fission.autostart.session: true

Places Database


Entity: sqlite_schema Count: - Size (KiB): 32 Size (%): 1.6 Efficiency (%): 24.6 Sequentiality (%): 71

Entity: moz_origins Count: 982 Size (KiB): 96 Size (%): 4.8 Efficiency (%): 37.8 Sequentiality (%): 71

Entity: sqlite_autoindex_moz_origins_1 Count: - Size (KiB): 96 Size (%): 4.8 Efficiency (%): 33.8 Sequentiality (%): 71

Entity: moz_places Count: 1388 Size (KiB): 224 Size (%): 11.1 Efficiency (%): 81.4 Sequentiality (%): 71

Entity: moz_historyvisits Count: 0 Size (KiB): 32 Size (%): 1.6 Efficiency (%): 0 Sequentiality (%): 71

Entity: moz_inputhistory Count: 0 Size (KiB): 32 Size (%): 1.6 Efficiency (%): 0 Sequentiality (%): 71

Entity: sqlite_autoindex_moz_inputhistory_1 Count: - Size (KiB): 32 Size (%): 1.6 Efficiency (%): 0 Sequentiality (%): 71

Entity: moz_bookmarks Count: 1640 Size (KiB): 192 Size (%): 9.5 Efficiency (%): 74.7 Sequentiality (%): 71

Entity: moz_bookmarks_deleted Count: 0 Size (KiB): 32 Size (%): 1.6 Efficiency (%): 0 Sequentiality (%): 71

Entity: sqlite_autoindex_moz_bookmarks_deleted_1 Count: - Size (KiB): 32 Size (%): 1.6 Efficiency (%): 0 Sequentiality (%): 71

Entity: moz_keywords Count: 0 Size (KiB): 32 Size (%): 1.6 Efficiency (%): 0 Sequentiality (%): 71

Entity: sqlite_autoindex_moz_keywords_1 Count: - Size (KiB): 32 Size (%): 1.6 Efficiency (%): 0 Sequentiality (%): 71

Entity: sqlite_sequence Count: - Size (KiB): 32 Size (%): 1.6 Efficiency (%): 0 Sequentiality (%): 71

Entity: moz_anno_attributes Count: 1 Size (KiB): 32 Size (%): 1.6 Efficiency (%): 0.1 Sequentiality (%): 71

Entity: sqlite_autoindex_moz_anno_attributes_1 Count: - Size (KiB): 32 Size (%): 1.6 Efficiency (%): 0.1 Sequentiality (%): 71

Entity: moz_annos Count: 389 Size (KiB): 32 Size (%): 1.6 Efficiency (%): 53.4 Sequentiality (%): 71

Entity: moz_items_annos Count: 0 Size (KiB): 32 Size (%): 1.6 Efficiency (%): 0 Sequentiality (%): 71

Entity: moz_meta Count: 6 Size (KiB): 32 Size (%): 1.6 Efficiency (%): 1 Sequentiality (%): 71

Entity: sqlite_stat1 Count: - Size (KiB): 32 Size (%): 1.6 Efficiency (%): 2.7 Sequentiality (%): 71

Entity: moz_places_metadata Count: 0 Size (KiB): 32 Size (%): 1.6 Efficiency (%): 0 Sequentiality (%): 71

Entity: moz_places_metadata_search_queries Count: 0 Size (KiB): 32 Size (%): 1.6 Efficiency (%): 0 Sequentiality (%): 71

Entity: sqlite_autoindex_moz_places_metadata_search_queries_1 Count: - Size (KiB): 32 Size (%): 1.6 Efficiency (%): 0 Sequentiality (%): 71

Entity: moz_previews_tombstones Count: 0 Size (KiB): 32 Size (%): 1.6 Efficiency (%): 0 Sequentiality (%): 71

Entity: moz_places_url_hashindex Count: - Size (KiB): 32 Size (%): 1.6 Efficiency (%): 59.2 Sequentiality (%): 71

Entity: moz_places_hostindex Count: - Size (KiB): 96 Size (%): 4.8 Efficiency (%): 36.6 Sequentiality (%): 71

Entity: moz_places_visitcount Count: - Size (KiB): 32 Size (%): 1.6 Efficiency (%): 33.8 Sequentiality (%): 71

Entity: moz_places_frecencyindex Count: - Size (KiB): 32 Size (%): 1.6 Efficiency (%): 38 Sequentiality (%): 71

Entity: moz_places_lastvisitdateindex Count: - Size (KiB): 32 Size (%): 1.6 Efficiency (%): 33.8 Sequentiality (%): 71

Entity: moz_places_guid_uniqueindex Count: - Size (KiB): 32 Size (%): 1.6 Efficiency (%): 84.6 Sequentiality (%): 71

Entity: moz_places_originidindex Count: - Size (KiB): 32 Size (%): 1.6 Efficiency (%): 41.8 Sequentiality (%): 71

Entity: moz_historyvisits_placedateindex Count: - Size (KiB): 32 Size (%): 1.6 Efficiency (%): 0 Sequentiality (%): 71

Entity: moz_historyvisits_fromindex Count: - Size (KiB): 32 Size (%): 1.6 Efficiency (%): 0 Sequentiality (%): 71

Entity: moz_historyvisits_dateindex Count: - Size (KiB): 32 Size (%): 1.6 Efficiency (%): 0 Sequentiality (%): 71

Entity: moz_bookmarks_itemindex Count: - Size (KiB): 32 Size (%): 1.6 Efficiency (%): 53.9 Sequentiality (%): 71

Entity: moz_bookmarks_parentindex Count: - Size (KiB): 32 Size (%): 1.6 Efficiency (%): 57.7 Sequentiality (%): 71

Entity: moz_bookmarks_itemlastmodifiedindex Count: - Size (KiB): 32 Size (%): 1.6 Efficiency (%): 93.7 Sequentiality (%): 71

Entity: moz_bookmarks_dateaddedindex Count: - Size (KiB): 32 Size (%): 1.6 Efficiency (%): 79.7 Sequentiality (%): 71

Entity: moz_bookmarks_guid_uniqueindex Count: - Size (KiB): 32 Size (%): 1.6 Efficiency (%): 99.7 Sequentiality (%): 71

Entity: moz_keywords_placepostdata_uniqueindex Count: - Size (KiB): 32 Size (%): 1.6 Efficiency (%): 0 Sequentiality (%): 71

Entity: moz_annos_placeattributeindex Count: - Size (KiB): 32 Size (%): 1.6 Efficiency (%): 12.7 Sequentiality (%): 71

Entity: moz_items_annos_itemattributeindex Count: - Size (KiB): 32 Size (%): 1.6 Efficiency (%): 0 Sequentiality (%): 71

Entity: moz_places_metadata_placecreated_uniqueindex Count: - Size (KiB): 32 Size (%): 1.6 Efficiency (%): 0 Sequentiality (%): 71

Entity: moz_places_metadata_referrerindex Count: - Size (KiB): 32 Size (%): 1.6 Efficiency (%): 0 Sequentiality (%): 71

Entity: moz_places_altfrecencyindex Count: - Size (KiB): 32 Size (%): 1.6 Efficiency (%): 33.8 Sequentiality (%): 71

Entity: moz_places_extra Count: 0 Size (KiB): 32 Size (%): 1.6 Efficiency (%): 0 Sequentiality (%): 71

Entity: moz_historyvisits_extra Count: 0 Size (KiB): 32 Size (%): 1.6 Efficiency (%): 0 Sequentiality (%): 71

Accessibility


Activated: false Prevent Accessibility: 0

Library Versions


NSPR Expected minimum version: 4.35 Version in use: 4.35

NSS Expected minimum version: 3.105 Beta Version in use: 3.105 Beta

NSSSMIME Expected minimum version: 3.105 Beta Version in use: 3.105 Beta

NSSSSL Expected minimum version: 3.105 Beta Version in use: 3.105 Beta

NSSUTIL Expected minimum version: 3.105 Beta Version in use: 3.105 Beta

Sandbox


Content Process Sandbox Level: 3 Effective Content Process Sandbox Level: 3

Startup Cache


Disk Cache Path: /Users/wakkowarner/Library/Caches/Firefox/Profiles/ixdac2yz.default-release/startupCache/startupCache.8.little Ignore Disk Cache: false Found Disk Cache on Init: true Wrote to Disk Cache: false

Internationalization & Localization


Application Settings Requested Locales: ["en-US"] Available Locales: ["en-US"] App Locales: ["en-US"] Regional Preferences: ["en-US"] Default Locale: "en-US" Operating System System Locales: ["en-US"] Regional Preferences: ["en-US"]

Remote Debugging (Chromium Protocol)


Accepting Connections: false URL:

Printing


Modified print settings


print_printer: Lexmark CX625ade print.macosx.pagesetup-2: PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPCFET0NUWVBFIHBsaXN0IFBVQkxJQyAiLS8vQXBwbGUvL0RURCBQTElTVCAxLjAvL0VO print.more-settings.open: true print.printer_Brother_MFC-J985DW_-_Fax.print_paper_height: 279.4 print.printer_Brother_MFC-J985DW_-_Fax.print_paper_id: na_letter print.printer_Brother_MFC-J985DW_-_Fax.print_paper_size_unit: 1 print.printer_Brother_MFC-J985DW_-_Fax.print_paper_width: 215.9 print.printer_Brother_MFC-J985DW_-_Fax.print_scaling: 1 print.printer_Brother_MFC-J985DW_-_Fax.print_shrink_to_fit: true print.printer_Brother_MFC-J985DW_-_Fax.print_unwriteable_margin_bottom_twips: 0 print.printer_Brother_MFC-J985DW_-_Fax.print_unwriteable_margin_left_twips: 0 print.printer_Brother_MFC-J985DW_-_Fax.print_unwriteable_margin_right_twips: 0 print.printer_Brother_MFC-J985DW_-_Fax.print_unwriteable_margin_top_twips: 0 print.printer_Lexmark_CX625ade_-_Fax.print_footercenter: print.printer_Lexmark_CX625ade_-_Fax.print_footerleft: print.printer_Lexmark_CX625ade_-_Fax.print_footerright: print.printer_Lexmark_CX625ade_-_Fax.print_headercenter: print.printer_Lexmark_CX625ade_-_Fax.print_headerleft: print.printer_Lexmark_CX625ade_-_Fax.print_headerright: print.printer_Lexmark_CX625ade.print_bgcolor: false print.printer_Lexmark_CX625ade.print_bgimages: false print.printer_Lexmark_CX625ade.print_duplex: 0 print.printer_Lexmark_CX625ade.print_edge_bottom: 0 print.printer_Lexmark_CX625ade.print_edge_left: 0 print.printer_Lexmark_CX625ade.print_edge_right: 0 print.printer_Lexmark_CX625ade.print_edge_top: 0 print.printer_Lexmark_CX625ade.print_footercenter: print.printer_Lexmark_CX625ade.print_footerleft: print.printer_Lexmark_CX625ade.print_footerright: print.printer_Lexmark_CX625ade.print_headercenter: print.printer_Lexmark_CX625ade.print_headerleft: print.printer_Lexmark_CX625ade.print_headerright: print.printer_Lexmark_CX625ade.print_ignore_unwriteable_margins: false print.printer_Lexmark_CX625ade.print_in_color: true print.printer_Lexmark_CX625ade.print_margin_bottom: 0.196527779102325 print.printer_Lexmark_CX625ade.print_margin_left: 0.196527779102325 print.printer_Lexmark_CX625ade.print_margin_right: 0.196527779102325 print.printer_Lexmark_CX625ade.print_margin_top: 0.196527779102325 print.printer_Lexmark_CX625ade.print_orientation: 0 print.printer_Lexmark_CX625ade.print_page_delay: 50 print.printer_Lexmark_CX625ade.print_paper_height: 11 print.printer_Lexmark_CX625ade.print_paper_id: na_letter_8.5x11in print.printer_Lexmark_CX625ade.print_paper_size_unit: 0 print.printer_Lexmark_CX625ade.print_paper_width: 8.5 print.printer_Lexmark_CX625ade.print_reversed: false print.printer_Lexmark_CX625ade.print_scaling: 1 print.printer_Lexmark_CX625ade.print_shrink_to_fit: true print.printer_Mozilla_Save_to_PDF.print_bgcolor: false print.printer_Mozilla_Save_to_PDF.print_bgimages: false print.printer_Mozilla_Save_to_PDF.print_duplex: 0 print.printer_Mozilla_Save_to_PDF.print_edge_bottom: 0 print.printer_Mozilla_Save_to_PDF.print_edge_left: 0 print.printer_Mozilla_Save_to_PDF.print_edge_right: 0 print.printer_Mozilla_Save_to_PDF.print_edge_top: 0 print.printer_Mozilla_Save_to_PDF.print_footercenter: print.printer_Mozilla_Save_to_PDF.print_footerleft: print.printer_Mozilla_Save_to_PDF.print_footerright: print.printer_Mozilla_Save_to_PDF.print_headercenter: print.printer_Mozilla_Save_to_PDF.print_headerleft: print.printer_Mozilla_Save_to_PDF.print_headerright: print.printer_Mozilla_Save_to_PDF.print_in_color: true print.printer_Mozilla_Save_to_PDF.print_margin_bottom: 0.5 print.printer_Mozilla_Save_to_PDF.print_margin_left: 0.5 print.printer_Mozilla_Save_to_PDF.print_margin_right: 0.5 print.printer_Mozilla_Save_to_PDF.print_margin_top: 0.5 print.printer_Mozilla_Save_to_PDF.print_orientation: 0 print.printer_Mozilla_Save_to_PDF.print_page_delay: 50 print.printer_Mozilla_Save_to_PDF.print_paper_height: 11 print.printer_Mozilla_Save_to_PDF.print_paper_id: na_letter print.printer_Mozilla_Save_to_PDF.print_paper_size_unit: 0 print.printer_Mozilla_Save_to_PDF.print_paper_width: 8.5 print.printer_Mozilla_Save_to_PDF.print_resolution: 0 print.printer_Mozilla_Save_to_PDF.print_reversed: false print.printer_Mozilla_Save_to_PDF.print_scaling: 0.8 print.printer_Mozilla_Save_to_PDF.print_shrink_to_fit: true print.printer_Mozilla_Save_to_PDF.print_to_file: true print.printer_Mozilla_Save_to_PDF.print_unwriteable_margin_bottom_twips: 0 print.printer_Mozilla_Save_to_PDF.print_unwriteable_margin_left_twips: 0 print.printer_Mozilla_Save_to_PDF.print_unwriteable_margin_right_twips: 0 print.printer_Mozilla_Save_to_PDF.print_unwriteable_margin_top_twips: 0 print.tab_modal.enabled: false

Content Analysis (DLP)


Active: false Connected to Agent: Agent Path: Agent Failed Signature Verification: Request Count:

Asked by Brian 1 unyaka odlule

Answered by Brian 1 unyaka odlule