Fragen mit folgendem Schlagwort anzeigen: Alle Fragen anzeigen
  • Gelöst
  • Archiviert

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..… (Lesen Sie mehr)

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?

Gefragt von Razvan Dedu vor 12 Monaten

Beantwortet von Razvan Dedu vor 12 Monaten

  • Gelöst
  • Archiviert

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… (Lesen Sie mehr)

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

Gefragt von yuriymeresin vor 1 Jahr

Beantwortet von yuriymeresin vor 1 Jahr

  • Gelöst
  • Archiviert

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… (Lesen Sie mehr)

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.

Gefragt von cvcrkbob vor 1 Jahr

Beantwortet von jscher2000 - Support Volunteer vor 1 Jahr