Blank pages

Occasionally I am getting completely blank pages, which are otherwise normally displayed on other browsers. Neighbouring pages on the same website are displayed normally.… (read more)

Occasionally I am getting completely blank pages, which are otherwise normally displayed on other browsers. Neighbouring pages on the same website are displayed normally. the condition appears with or without VPN used.

Asked by np3052 1 hour ago

Page appears almost white

This page (https://store.creality.com/products/creality-k2-plus-combo-3d-printer?official-website-pro-store%3FOfficial-website-index-buy=&spm=..index.index_creality_p… (read more)

This page (https://store.creality.com/products/creality-k2-plus-combo-3d-printer?official-website-pro-store%3FOfficial-website-index-buy=&spm=..index.index_creality_product_1.1) appears almost white except for two small buttons in firefox but is normal in Edge. Note that it's same in troubleshoot mode.

Asked by jdroche1 7 hours ago

Firefox silently crashes on Mac

Hi there, I'm running Firefox (136.0.1) on my mac laptop (MacOs 15.1) Just recently it has started silently failing. I move away from the window and after a short perio… (read more)

Hi there,

I'm running Firefox (136.0.1) on my mac laptop (MacOs 15.1) Just recently it has started silently failing. I move away from the window and after a short period (hour or so) I can see it is no longer running. When I start it again it offers to recover the session for me.

I've tried checking about:crashes but it just says no crash reports have been submitted. There are no details of unsubmitted reports.

Thanks, John

Asked by john.howard.65+mozilla 10 hours ago

Icone Google Tradutor

Nao consigo remover o irritante icone do google tradutor do meu navegador Firefox. Sequer tenho o aplicativo tradutor instalado no meu Iphone. Estou quase desistindo de … (read more)

Nao consigo remover o irritante icone do google tradutor do meu navegador Firefox. Sequer tenho o aplicativo tradutor instalado no meu Iphone. Estou quase desistindo de utilizar o Firefox por causa dessa questao.

Agradeço, Bruno.

Asked by Bruno Guimarães 10 hours ago

Suddenly I can't get to Firefox on Android phone to get to bookmarks

Suddenly I can't get to Firefox on Android phone to get to bookmarks, tabs, etc -- when I tap Firefox icon to open it goes to Mozilla support page instead of opening Fire… (read more)

Suddenly I can't get to Firefox on Android phone to get to bookmarks, tabs, etc -- when I tap Firefox icon to open it goes to Mozilla support page instead of opening Firefox.

Asked by Steve S 12 hours ago

Pixverse

JavaScript的: // ==UserScript== // @name pixverse nsfw video bypass // @match https://app.pixverse.ai/* // @run-at document-start // @version 1.0 // … (read more)

JavaScript的: // ==UserScript== // @name pixverse nsfw video bypass // @match https://app.pixverse.ai/* // @run-at document-start // @version 1.0 // @author cptdan // ==/UserScript==

(function() {

   'use strict';
   function waitForAxios() {
       if (typeof axios !== 'undefined') {
           patchAxios();
       } else {
           setTimeout(waitForAxios, 10);
       }
   }
   function modifyResponseData(data) {
       if (Array.isArray(data)) {
           return data.map(item => {
               const modifiedItem = item;
               if(item.video_status === 7){
                  modifiedItem.video_status = 1;
               }
               if (item.extended === 1) {
                   modifiedItem.first_frame = item.customer_paths?.customer_video_last_frame_url;
               } else {
                   modifiedItem.first_frame = item.customer_paths?.customer_img_url;
               }
               modifiedItem.url = 'https://media.pixverse.ai/' + item.video_path;
               return modifiedItem;
           });
       }
       return data;
   }
   function patchAxios() {
       const originalCreate = axios.create;
       axios.create = function(config) {
           const instance = originalCreate.apply(this, arguments);
           const instancePost = instance.post;
           instance.post = function(url, data, config) {
               if (url && url.includes('/video/list/personal')) {
                   const promise = instancePost.apply(this, arguments);
                   return promise.then(response => {
                       const modifiedData = modifyResponseData(response.data);
                       const modifiedResponse = {
                           ...response,
                           data: modifiedData
                       };
                       return modifiedResponse;
                   }).catch(error => {
                       console.error('[Axios Instance POST /video/list/personal] Error:', {
                           url: url,
                           error: error.message,
                           timestamp: new Date().toISOString()
                       });
                       throw error;
                   });
               }
               return instancePost.apply(this, arguments);
           };
           return instance;
       };
       console.log('Axios patching for /video/list/personal complete');
   }
   waitForAxios();

})();

Asked by 陈枫 16 hours ago

Why does Firefox disappear when I open a second app?

Please help me. Firefox disappears when I open a second app on top of it (i.e. MS Word or Mac Mail). Full screen is not selected. If I put Firefox in split screen (which… (read more)

Please help me. Firefox disappears when I open a second app on top of it (i.e. MS Word or Mac Mail). Full screen is not selected. If I put Firefox in split screen (which is not what I want), there is no option to open a second app in other half of screen.

I'm using MacOS Ventura 13.7.4



/edit: moved thread from Firefox for iOS to Firefox section as you have macOS.

Asked by sueparot 1 day ago