Showing questions tagged:

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… (read more)

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.

Solved Archived 1 113

Updated Firefox 149 ignores startup homepage GPO settings

I have a GPO policy that sets Homepage for startup to open specific URL, and now it just stopped working after last update to version 149, instead i get standard FF start… (read more)

I have a GPO policy that sets Homepage for startup to open specific URL, and now it just stopped working after last update to version 149, instead i get standard FF startpage.

- tried updating .admx templates to the newest version

- about:policies shows correctly that GPO is enforced

Everything checks out but somehow it is not working anymore. Someone with similar problem?

Solved 1 62

home page

do not want a website as my home page - prefer Firefox default as I had before restart, however when I go to Settings, Home page is set to Firefox default but it does not… (read more)

do not want a website as my home page - prefer Firefox default as I had before restart, however when I go to Settings, Home page is set to Firefox default but it does not work -- how else can I have my home page back to default. If you send my link I can probably drag it there hopefully. Thank you

Solved Archived 1 87

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… (read more)

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.

Locked 1 134

Why has Firefox homepage gone so woak?

Why has the content provided on the Firefox homepage gone so extremely liberal? It appears to be more of a source for tabloid trash than a source for factual news, hones… (read more)

Why has the content provided on the Firefox homepage gone so extremely liberal? It appears to be more of a source for tabloid trash than a source for factual news, honest articles and positive content! After recommending this platform for years, I am appalled by the apparent intent to present divisive articles and rhetoric. Suggest you do a better job of choosing information that will make Firefox excel over Google Chrome and Microsoft Edge... not rool in the mud with them!

Locked 1 73

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… (read more)

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?

Solved 1 84

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… (read more)

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.

Solved Archived 1 283

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..… (read more)

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?

Solved Archived 1 290