Εμφάνιση ερωτήσεων με ετικέτες: Εμφάνιση όλων των ερωτήσεων
  • Επιλύθηκε

home page symbol

I really miss the home symbol (a little house), as it allowed me to go back to the original page- blank. I could just start over without having to clear the address bar. … (διαβάστε περισσότερα)

I really miss the home symbol (a little house), as it allowed me to go back to the original page- blank. I could just start over without having to clear the address bar. It was way better than without it. Any way I can get it back?

Ερώτηση από gnarly1 3 μήνες πριν

Απάντηση από jonzn4SUSE 3 μήνες πριν

  • Κλειδωμένο

Unwanted website keeps popping up when I open firefox

I signed onto my parents computer that was assigned to a school district and now everytime I open firefox on any of my devices their website keeps popping up. I've signed… (διαβάστε περισσότερα)

I signed onto my parents computer that was assigned to a school district and now everytime I open firefox on any of my devices their website keeps popping up. I've signed out of their computer and have tried deleting and reopening my account, and nothing seems to work.

Ερώτηση από SuMo Bot 2 μήνες πριν

Τελευταία απάντηση από jonzn4SUSE 2 μήνες πριν

  • Επιλύθηκε

All of a sudden I'm constantly getting pop up ads on my home page. How do I stop them? I keep clicking that the ads are inappropriate, or I've seen them numerous times, etc.

All of a sudden I keep getting pop up ads on my Home page, even though I click on that I'm not interested or they're inappropriate, etc. How do I stop these??

Ερώτηση από Twotutor 2 μήνες πριν

Απάντηση από jscher2000 - Support Volunteer 2 μήνες πριν

  • Επιλύθηκε
  • Αρχειοθετήθηκε

How do I set my home page with my yahoo mail account

How do I set my home page with my yahoo mail account? I looked under your help section and followed instructions and it didn't work. I am currently setting up my new co… (διαβάστε περισσότερα)

How do I set my home page with my yahoo mail account? I looked under your help section and followed instructions and it didn't work. I am currently setting up my new computer.

Ερώτηση από cvcrkbob 1 έτος πριν

Απάντηση από jscher2000 - Support Volunteer 1 έτος πριν

  • Επιλύθηκε
  • Αρχειοθετήθηκε

Favicons not showing in home content shortcuts

Firefox only shows favicons in the shortcuts for the pre-installed sites. All new sites do not get favicons, just the stylized first letter of the domain.

Ερώτηση από mozilla670 1 έτος πριν

Απάντηση από mozilla670 1 έτος πριν

  • Επιλύθηκε
  • Αρχειοθετήθηκε

don't work shortcuts for inspect element

I use the Zen browser and I can't use ctrl+shift+c to view the element, I deleted the shortcut specified in the settings for copying the page URL so that the inspector wo… (διαβάστε περισσότερα)

I use the Zen browser and I can't use ctrl+shift+c to view the element, I deleted the shortcut specified in the settings for copying the page URL so that the inspector would work, but it doesn't work, although the correct shortcut is indicated when hovering, but it doesn't work

Ερώτηση από yuriymeresin 1 έτος πριν

Απάντηση από yuriymeresin 1 έτος πριν

  • Επιλύθηκε
  • Αρχειοθετήθηκε

New start page after update?

After firefox update, start page changed to first photo i added here, second photo is how it was before, is there any way to get it back? Before update i had version 131.… (διαβάστε περισσότερα)

After firefox update, start page changed to first photo i added here, second photo is how it was before, is there any way to get it back? Before update i had version 131.0b9, now its 136.0b1

Ερώτηση από yariknesterenko9 1 έτος πριν

Απάντηση από yariknesterenko9 1 έτος πριν

  • Επιλύθηκε

Home page articles

How do I get rid of some of the sections on the home page? For example, there are some, like all the sports ones, that I NEVER want to see.

Ερώτηση από kiricopper 1 μήνα πριν

Απάντηση από kiricopper 1 μήνα πριν

  • Επιλύθηκε
  • Αρχειοθετήθηκε

How to set the New Tab page to a local file? (autoconfig no longer works in v136.0)

Since the settings haven't given that option for years, the best way to have a local file as the new tab page was using autoconfig.cfg + autoconfig.js, as described in th… (διαβάστε περισσότερα)

Since the settings haven't given that option for years, the best way to have a local file as the new tab page was using autoconfig.cfg + autoconfig.js, as described in this thread: https://support.mozilla.org/en-US/questions/1251199 But since the most recent update (v136.0), this stopped working.

The New Tab Override add-on has its own issues with using local files (can only load a .html file, no local CSS/JS, can't give a blank address bar for me to search in), so it doesn't solve the issue either.

This is very important to me, and others have been asking for this feature back for years. It feels awful to have the working solution stop working, in the browser that's supposed to be open and customizable.

Ερώτηση από Quazer 1 έτος πριν

Απάντηση από Quazer 12 μήνες πριν

  • Επιλύθηκε
  • Αρχειοθετήθηκε

Focus newtab page content instead of address bar

Hey! Up until the last update, I used this code to set and focus a custom new tab page instead of its address bar (This should be a default feature, but what can you do..… (διαβάστε περισσότερα)

Hey! Up until the last update, I used this code to set and focus a custom new tab page instead of its address bar (This should be a default feature, but what can you do...)

``` var {classes:Cc,interfaces:Ci,utils:Cu} = Components;

// Set new tab page try {

 ChromeUtils.importESModule("resource:///modules/AboutNewTab.sys.mjs").AboutNewTab.newTabURL = "file:///home/razv/StartPage/index.html"; 

} catch(e){Cu.reportError(e);} // report errors in the Browser Console

// Auto focus new tab content try {

 ChromeUtils.import("resource:///modules/BrowserWindowTracker.jsm").BrowserWindowTracker;
 const Services = globalThis.Services
 Services.obs.addObserver((event) => {
   window = BrowserWindowTracker.getTopWindow();
   window.gBrowser.selectedBrowser.focus();
 }, "browser-open-newtab-start");

} catch(e) { Cu.reportError(e); } ```

After the last update, focusing the new tab page's content is broken. Can anyone help me?

Ερώτηση από Razvan Dedu 12 μήνες πριν

Απάντηση από Razvan Dedu 12 μήνες πριν

  • Επιλύθηκε

Help! Unwanted Yahoo image page on Firefox startup

I'm trying to diagnose an unusual problem on a relative's computer elsewhere in the country via TeamViewer. When Firefox is initiated, the same picture (a man taking a s… (διαβάστε περισσότερα)

I'm trying to diagnose an unusual problem on a relative's computer elsewhere in the country via TeamViewer. When Firefox is initiated, the same picture (a man taking a shower) appears, and the VERY 'long URL starts with a Yahoo image file (yimg) and also contains buzzfeed.com well into that URL. I thought I could easily diagnose this, and have failed. Home page is set to blank page. I cleared all browsing data. When that failed I exported bookmarks, created a new profile, and the problem still continued, even before importing the bookmarks or adding any extensions. Something is retaining the unwanted startup behavior. Tonight, out of desperation, I will reconnect and look through the registry.

Can anyone surmise why an unwanted URL is being invoked upon Firefox startup?

Ερώτηση από ArtShapiro 3 εβδομάδες πριν

Απάντηση από ArtShapiro 3 εβδομάδες πριν

  • Επιλύθηκε

Sponsors on the home page are getting anoying

Normally Firefox sponsor ads on home page occasionally inserts an new ad. I will support some occasional ads by clicking on the new ad to give Firefox 'click credit' … (διαβάστε περισσότερα)

Normally Firefox sponsor ads on home page occasionally inserts an new ad. I will support some occasional ads by clicking on the new ad to give Firefox 'click credit' then deleting new ad. Today when I delete the new ad another pops up 10-15 times an will not stop. That is too much. I do voluntarily support Firefox with monthly donation.

How do I stop the constantly returning ads?

Ερώτηση από ringo2 3 εβδομάδες πριν

Απάντηση από Denys 3 εβδομάδες πριν