Viser spørgsmål med mærkatet: Vis alle spørgsmål

Вопрос по поводу страной активности ютуба в firefox

Здравствуйте. Во время навигации youtube на главной странице если просто НАВЕСТИ мышкой на "На предыдущую страницу (Alt+Влево)" то ИНОГДА играет непонятная музыка или как… (læs mere)

Здравствуйте. Во время навигации youtube на главной странице если просто НАВЕСТИ мышкой на "На предыдущую страницу (Alt+Влево)" то ИНОГДА играет непонятная музыка или какой-то непонятный ролик, который я НЕ ВКЛЮЧАЛ. Важно: самого видео этого неизвестного ролика нет, играет просто звук. Другие вкладки браузера закрыты, открыта только вкладка youtube. Использую firefox esr, так как у меня виндовс 7, использую свежую версию firefox esr. Расширения, которые установлены - Ublock origin и uvpn. Не знаю, мог ли подхватить неизвестный вирус? Просканировал ESET, потом поставил антивирус comodo - все чисто по мнению данных антивирусных проверок, но вот проблема не решилась. Очень хотел бы, чтобы вы разобрались с этим вопросом. Ответ отправьте пожалуйста на почту [email 1 removed]@ukr.net или [email 2 removed]@gmail.com ( на любую почту, на какую будет удобней).

Перевод/translate:

Hello. When navigating YouTube on the main page, if you simply Hover the mouse over "Previous page (Alt+Left)", then SOMETIMES strange music or some strange video plays. Important: there is no video of this unknown video, just the sound plays. Other browser tabs are closed, only the YouTube tab is open. I use Firefox ESR, since I have Windows 7, I use the latest version of Firefox ESR. The extensions that are installed are Ublock origin and uvpn. I don't know if it could have been infected by an unknown virus? I scanned with ESET, installed Comodo, but the problem was not solved. I would really like you to sort this out. Please send the answer to [email 1 removed]@ukr.net or [email 2 removed]@gmail.com (to any email that is more convenient).

Stillet af jean errie for 2 dage siden

Bookmarks and new tabs

When using the new version of Firefox, I found that bookmarks only appeared in new tabs. Once I opened other web pages, there were no bookmarks above the screen, which ma… (læs mere)

When using the new version of Firefox, I found that bookmarks only appeared in new tabs. Once I opened other web pages, there were no bookmarks above the screen, which made me feel inconvenient. Previously, the new tabs could also be customized, but now they can only be blank or the default pages of Firefox. So, can the new version of Firefox solve these problems? Or which of the older versions of Firefox can still meet my requirements?

Stillet af 2475575371 for 2 dage siden

Seneste svar af Paul for 2 dage siden

search engine.

Okay, i have been using librewolf for awhile now since i got my desktop fully built. today i went to go search something related to my phone and instead of using duckduck… (læs mere)

Okay, i have been using librewolf for awhile now since i got my desktop fully built. today i went to go search something related to my phone and instead of using duckduckgo it automatically used Google. i do not want this and have no idea how to fix it

Stillet af connoroellerich85 for 6 dage siden

Seneste svar af Paul for 6 dage siden

History wiped on exit with options not working as per requirements.

Ok so I usually choose these option to remember history and from time to time delete Browsing & download history and Temporary cached files and pages. https://asset… (læs mere)

Ok so I usually choose these option to remember history and from time to time delete Browsing & download history and Temporary cached files and pages.

https://assets-prod.sumo.prod.webservices.mozgcp.net/media/uploads/images/2025-06-28-08-45-55-a5277f.png

Note: I have "Open previous window and tabs" ticked in general settings which also has a restore previous session option in the history menu. This brings back previous session with tabs etc as is when I close FF. https://assets-prod.sumo.prod.webservices.mozgcp.net/media/uploads/images/2025-06-28-08-45-51-cf2daf.png

I thought I could automate this on exit but don't think its working right. So I change the option to "use custom settings for history" and tick all three options:

Remember browsing and download history Remember search and form history Clear history when Firefox closes For "Clear history when Firefox closes" I ticked Browsing & download history and Temporary cached files and pages. https://assets-prod.sumo.prod.webservices.mozgcp.net/media/uploads/images/2025-06-28-08-45-43-b10213.png

The issue is the restore session option is missing and FF opens with all previous tabs gone. I am frankly not even sure what else is missing such as cookies, site data etc. Is this meant to work like so?

Stillet af Mrsash for 3 uger siden

Seneste svar af Mrsash for 1 uge siden

Closing the current tab

I spend a lot of time opening a link in a new tab, and then once I have finished looking at it I need to move my mouse pointer over to the tab to close it so that I can g… (læs mere)

I spend a lot of time opening a link in a new tab, and then once I have finished looking at it I need to move my mouse pointer over to the tab to close it so that I can go back to my main page.

I would like a simple addition to the Firefox code that would allow me to close the current tab with a double click anywhere on the current tab. This should be a simple thing to implement in a Firefox release.

Thanks

Stillet af Clan for 1 uge siden

Firefox desktop version

PLEASE help! I am desperatly trying to stop firefox from opening a tab every time after I visited my individualized start page and clicking on it. It is my yahoo and ever… (læs mere)

PLEASE help! I am desperatly trying to stop firefox from opening a tab every time after I visited my individualized start page and clicking on it. It is my yahoo and every time I click to check my mails or read an article your browser opens a tab that shows my account settings. It is terribly annoying. Thank you! Ariane

Stillet af Ariane for 1 uge siden

.pdf downloading failed after updating the browser.

I have use the following type of code in the google appscript for downloading the html table as .pdf format but after update the Firefox browser the file unable to downlo… (læs mere)

I have use the following type of code in the google appscript for downloading the html table as .pdf format but after update the Firefox browser the file unable to download but everything runs properly and the success message is appearing but the file is not downloading. Before, update the browser, the file was downloaded properly, please tell me how to resolve the problem. It's an URGENT. Please take necessary action at an earlier.

function exportToPDF() {

   try {
       const table = document.getElementById("dataTable");
       if (!table || table.classList.contains('hidden')) {
           showAlert("Nothing found to generate PDF!");
           return;
       }
       const originalScrollPosition = {
           body: document.body.scrollTop || document.documentElement.scrollTop
       };
       document.body.scrollTop = 0;
       document.documentElement.scrollTop = 0;
       const tableContainer = document.querySelector(".table-container");
       const cloneContainer = tableContainer.cloneNode(true);
       cloneContainer.style.overflow = "visible";
       cloneContainer.style.maxHeight = "unset";
       cloneContainer.classList.add("no-scrollbar");


       const clone = cloneContainer.querySelector("table");
       clone.style.fontSize = "12px";
       clone.style.borderCollapse = "collapse";
       clone.style.width = "100%";
       clone.querySelectorAll('th').forEach(th => {
           th.style.fontSize = "10.5px";
           th.style.padding = "1px";
           th.style.border = "1px solid black";
       });
       clone.querySelectorAll('td').forEach(td => {
           td.style.fontSize = "10.5px";
           td.style.padding = "1px";
           td.style.border = "1px solid black";
       });


       const now = new Date();
       const dateTime = now.toLocaleString("en-GB", {
           day: "2-digit", month: "2-digit", year: "numeric",
           hour: "2-digit", minute: "2-digit", second: "2-digit",
           hour12: true
       });
       const selectedYearValue = document.getElementById('yearSelect').value;


       const wrapper = document.createElement("div");
       wrapper.style.fontSize = "16px";
       wrapper.style.fontFamily = "Arial, sans-serif";
       wrapper.style.width = "100%";


       const header = document.createElement("div");
       header.style.textAlign = "center";
       header.innerHTML = `
Financial Year wise Report on BEUP || 17th Assembly (2021-2026)
Financial Year: ${selectedYearValue}
               Report as on: ${dateTime}
       `;
       wrapper.appendChild(header);
       wrapper.appendChild(cloneContainer);
       cloneContainer.style.marginTop = "2px";
       cloneContainer.style.paddingTop = "0px";


       const fileName = `MLA_wise_&_F-Y_wise_Report_as_on_${formatDateTimeForFilename()}.pdf`;


       document.body.style.overflow = 'hidden';
       const opt = {
           margin: [5, 5, 5, 5],
           filename: fileName,
           image: { type: 'jpeg', quality: 1 },
           html2canvas: {
               scale: 2,
               useCORS: true,
               scrollY: 0,
               windowHeight: document.documentElement.scrollHeight
           },
           jsPDF: {
               unit: 'mm',
               format: 'a4',
               orientation: 'landscape'
           }
       };
       html2pdf().set(opt).from(wrapper).save().then(() => {
           
           document.body.scrollTop = originalScrollPosition.body;
           document.documentElement.scrollTop = originalScrollPosition.body;
           document.body.style.overflow = ;

           showAlert("PDF file downloaded successfully!", 'success');
       });
   } catch (e) {
       console.error("Error generating PDF:", e);
       document.body.style.overflow = ;

       showAlert("PDF generation failed. Check console for details.", 'error');
   }

}

Stillet af BEUP NADIA for 1 uge siden

Recent Problem : My Bookmark Toolbar : Keeps CHANGING !!

I have a WINDOWS computer and I use Windows 11. My Firefox Bookmarks Toolbar has several FOLDERS. Each Folder has "drop-down" components. Example: FINANCIAL Folder in… (læs mere)

I have a WINDOWS computer and I use Windows 11.

My Firefox Bookmarks Toolbar has several FOLDERS.

Each Folder has "drop-down" components.

Example: FINANCIAL Folder includes: Pension

                                                                Social Security
                                                                Military Retirement pay
                                                                15 or so "others"
                 BANKS Folder includes:  Bank #1 ( name witheld)
                                                           Bank #2 ( "         "         )
                                                           couple more

                 MEDICAL Folder includes :   Medicare
                                                                My Chart
                                                                couple more

Everything looked great. Worked great too.

Then, next time Computer turned on, the FINANCIAL Folder had "Pension"

                                                                                                           "Pension" ( same one again )
                                                                                                           "Pension" ( same one again )
                                                                                                           "Pension" ( same one again )
                                                                                                           "Social Security"
                                                                                                           "Social Security" ( same one again )
                                                                                                           "Social Security" ( 3 more times)
                                                                                                            ALL THE REST - GONE !!

Several Folders now 2-4 more times showing on the Bookmarks Toolbar Additionally, MANY Folders are now "Missing" !!!

A day or so later, the Bookmarks Toolbar was CORRECT !

A day or so later, the Bookmarks Toolbar was ALL WRONG as described above.

What is going on ??

Is there a way to FIX this? Do I need to go to GOOGLE CHROME / MICROSOFT EDGE ??

Similarly I have tried to LOG-ON to my Marriott Hotel website and things did not work correctly. I called Marriott Reservations and described the problem. Marriott asked IF I was using Firefox? I replied "YES". They said to use Google Chrome instead.

I used CHROME and everything worked GREAT !!!

Is this the answer? Firefox is not being properly supported? I should switch Browsers ??

I have used Firefox for MANY years. These problems are VERY recent.

I have always thought that "hackers" targeted Microsoft so Firefox had a "lower profile" and was therefore "SAFER".

I am losing confidence in Firefox.

Are these problems that other Firefox users are having also?

I liked Firefox's recent REVIEWS of "Ratings" -- but that was terminated recently.

Something "smells BAD" about Firefox.

What gives?

If your recommendation is to "abandon Firefox", which Browser do you recommend?

You help is much appreciated.

Regards,

Lloyd H.

Stillet af LLOYD for 2 uger siden

home button

My old Firefox on my desk top has a home icon to go back to the home page. This new Firefox on my laptop doesn't seem to have one? What am I missing? How do I get back to… (læs mere)

My old Firefox on my desk top has a home icon to go back to the home page. This new Firefox on my laptop doesn't seem to have one? What am I missing? How do I get back to the home page?

Stillet af logjam61 for 2 uger siden

Seneste svar af TyDraniu for 2 uger siden

FireFox Is Slowing down

I have been using firefox for 3 to 4 years now and it's the best brower i have ever used but from a few months it have gotten too slow i am a student and need to create p… (læs mere)

I have been using firefox for 3 to 4 years now and it's the best brower i have ever used but from a few months it have gotten too slow i am a student and need to create projects and research alot so i have to open around 20 tabs at a single time but before even after opening 30 tabs it would be fast as ever. I don't have any security extension or whatever i just have AdGuard AdBlocker extention, volume booster and grammerly and screenshot taker and hoxx vpn (it was before as well) but the firfox has become so slow now. (I have custom and max protection on) and additional windows protection too. and sometimes it just stop responding and also hangs up and closes own it own.

Stillet af AKBAR MOHD for for 1 måned siden

Seneste svar af MSI Mint17 for 2 uger siden

I would like to request a much needed feature to Firefox: Rocker Gestures.

I'm absolutely dying for this feature, it is a lifesaver in Vivaldi and Opera and other browsers, the extension options simply don't work the same as they only work when … (læs mere)

I'm absolutely dying for this feature, it is a lifesaver in Vivaldi and Opera and other browsers, the extension options simply don't work the same as they only work when the website has finished loading and in case I've clicked on the wrong link I have to wait for it to load to go back or lose my train of thought whenever I am using this browser after a while because I'm used to the Rocker Gestures to go back and forward. Please implement this feature into the base browser, thank you very much

Stillet af Niko for 2 uger siden

Seneste svar af Paul for 2 uger siden

I’m not getting pictures when I log into say guitar websites

I’m searching for guitars , when I used to log into say guitar before I would see pics of say Gibson guitars to look at . I’ve reset something somewhere to give me more p… (læs mere)

I’m searching for guitars , when I used to log into say guitar before I would see pics of say Gibson guitars to look at . I’ve reset something somewhere to give me more privacy online and inadvertently turned off the command to show pics of my search topics .

Stillet af tmpminds1 for 2 uger siden

Seneste svar af Kiki for 2 uger siden

Modifier les "top sites" ?

Bonjour, Je veux modifier ces sites webs recommandés. Des "top sites" ça s'appelle je crois. J'ai regardé sur le net mais j'ai pas vu comment les modifier. J'ai par exemp… (læs mere)

Bonjour, Je veux modifier ces sites webs recommandés. Des "top sites" ça s'appelle je crois. J'ai regardé sur le net mais j'ai pas vu comment les modifier. J'ai par exemple, pas besoin de Le Monde ou de Reddit. Cordialement, Un utilisateur

Stillet af Sea for 2 uger siden