Afficher les questions étiquetées : Afficher toutes les questions
  • Verrouillé

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… (lire la suite)

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.

Demandé par SuMo Bot il y a 2 mois

Dernière réponse par jonzn4SUSE il y a 2 mois

  • Résolu

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??

Demandé par Twotutor il y a 2 mois

Réponse de jscher2000 - Support Volunteer il y a 2 mois

  • Résolu
  • Archivé

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..… (lire la suite)

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?

Demandé par Razvan Dedu il y a 11 mois

Réponse de Razvan Dedu il y a 11 mois