1. Nachrichten
  2. Forum
    1. Unerledigte Themen
    2. Forenregeln
  3. Spenden
  • Anmelden
  • Registrieren
  • Suche
Alles
  • Alles
  • Artikel
  • Seiten
  • Forum
  • Erweiterte Suche
  1. camp-firefox.de
  2. Zitronella

Beiträge von Zitronella

  • close-tabs-left.uc.js funktioniert seit Firefox 154 nicht mehr

    • Zitronella
    • 21. August 2026 um 16:53

    Danke euch. Ich hatte gestern aber auch nochmal die KI befragt und sie gab mir u.a. das aus.

    JavaScript
    (function() {
    
      if (location != 'chrome://browser/content/browser.xhtml')
        return;
    
      let tabContextMenu = document.getElementById('tabContextMenu');
      let refItem = document.getElementById('context_undoCloseTab');
    
      // Linke Tabs schließen
      let menuitem = document.createXULElement('menuitem');
      menuitem.id = 'context_closeLeftTabs';
      menuitem.setAttribute('label', 'Linke Tabs schließen');
      menuitem.addEventListener('command', () => {
        for (let i = TabContextMenu.contextTab._tPos - 1; i >= 0; i--)
          gBrowser.removeTab(gBrowser.tabs[i], {animate: true});
      });
      tabContextMenu.insertBefore(menuitem, refItem);
    
      // Rechte Tabs schließen
      menuitem = document.createXULElement('menuitem');
      menuitem.id = 'context_closeRightTabs';
      menuitem.setAttribute('label', 'Rechte Tabs schließen');
      menuitem.addEventListener('command', () => {
        for (let i = gBrowser.tabs.length - 1; i > TabContextMenu.contextTab._tPos; i--)
          gBrowser.removeTab(gBrowser.tabs[i], {animate: true});
      });
      tabContextMenu.insertBefore(menuitem, refItem);
    
    })();
    Alles anzeigen

    allerdings hatte und habe ich auch eh ein paar Einträge aus dem Contextmenü entfernt in der userChrome.css, ansonsten wärs doppelt.

    CSS
    /* Einträge aus Tab-Kontextmenü entfernen */
    #context_pinTab,
    #context_unpinTab,
    #context_pinSelectedTabs,
    #context_unpinSelectedTabs,
    #context_bookmarkTab,
    #tabContextMenu #context_sendTabToDevice,
    #tabContextMenu #context_sendTabToDevice + menuseparator,
    #context_closeOtherTabs + menuseparator,
    #context_undoCloseTab, #context_closeTab,
    #context_closeTabOptions,
    #context_shareTabURL
    { display:none !important; }
    Alles anzeigen
  • Seit Firefox 153.0.4 (64-Bit) leere Kacheln

    • Zitronella
    • 21. August 2026 um 16:47
    Zitat von Sören Hentzschel

    Ich könnte mir sonst auch vorstellen, dass das Widget-System als Ganzes noch an irgendeiner schrittweisen Ausrollung hängt.

    ja das denke ich mir auch.

    ich hatte ja immer im meinem Arbeitsprofil browser.newtabpage.activity-stream.nova.enabled auf false. Somit nie einen Unterschied bemerkt, auch nicht bei der WM. Gestern wie gesagt alles in einem frischen Profil ausprobiert mit den Größen medium und large

  • close-tabs-left.uc.js funktioniert seit Firefox 154 nicht mehr

    • Zitronella
    • 20. August 2026 um 15:32

    kann mir das jemand für Firefox 154 reparieren?

    JavaScript
    (function() {
    
      if (location != 'chrome://browser/content/browser.xhtml')
        return;
    
      let menuitem = document.createXULElement('menuitem');
      menuitem.id = 'context_closeLeftTabs';
      menuitem.setAttribute('label', 'Linke Tabs schließen');
      let tabContextMenu = document.getElementById('tabContextMenu');
      let refItem = document.getElementById('context_undoCloseTab');
       tabContextMenu.insertBefore(document.getElementById('context_closeTabsToTheEnd'), refItem);
      tabContextMenu.insertBefore(document.getElementById('context_closeTabsToTheStart'), refItem);
      tabContextMenu.insertBefore(document.getElementById('context_closeOtherTabs'), refItem);
      //tabContextMenu.removeChild(document.getElementById('context_closeTabOptions'));
    //click
    menuitem.addEventListener('click', () => {
    	if (event.button == 0) {
           	 for (let i = TabContextMenu.contextTab._tPos - 1; i >= 0; i--)gBrowser.removeTab(gBrowser.tabs[i], {animate: true});
                }
    }); 
    
    })();
    Alles anzeigen

    Vielen Dank im vorraus

  • Seit Firefox 153.0.4 (64-Bit) leere Kacheln

    • Zitronella
    • 20. August 2026 um 14:32

    bei frischen Profil: browser.newtabpage.activity-stream.widgets.weather.size steht auf small wenn ich es auf medium oder large stelle dann verschwindet das Wetterwidget komplett von about:newtab Seite.

    Vielleicht ist das Ganze abhängig von der Bildschirmgröße :/

  • Seit Firefox 153.0.4 (64-Bit) leere Kacheln

    • Zitronella
    • 20. August 2026 um 10:08
    Zitat von Sören Hentzschel

    In einem neuen Profil und Firefox 154 sehe ich die Option.

    ich nicht. Ich habe gerade ein neues Profil dafür extra erstellt.

  • Seit Firefox 153.0.4 (64-Bit) leere Kacheln

    • Zitronella
    • 20. August 2026 um 00:16
    Zitat von Sören Hentzschel

    Kannst du bitte zeigen,

    klar ;)

    auf true:

    auf false:

  • Seit Firefox 153.0.4 (64-Bit) leere Kacheln

    • Zitronella
    • 18. August 2026 um 23:21

    ich hab mal auch hier die KI befragt und mir den Code mal abgespeichert, da die Kacheln quasi genauso aussehen wie mit auf false.

    CSS
    @-moz-document url(about:newtab), url(about:home){
        /* ==================================================================================================================
           about:newtab Seite wenn browser.newtabpage.activity-stream.nova.enabled auf true mit ähnlichem Aussehen
           ================================================================================================================== */
    
      /* Mehr Abstand zwischen den Kacheln */
      .nova-enabled .top-site-outer {
        width: 120px !important;
      }
    
      .nova-enabled .top-sites-list {
        column-gap: 0 !important;
      }
    
      /* Kacheln */
      .nova-enabled .top-site-outer .tile {
        width: 64px !important;
        height: 64px !important;
      }
    
      /* Keine Vergrößerung beim Hover */
      .nova-enabled
      .top-site-outer:is(:hover, :focus-within, .active)
      .tile {
        width: 64px !important;
        height: 64px !important;
      }
    }
    Alles anzeigen

    allerdings gibt es Unterschiede, je nachdem ob die Suchleiste auf about:newtab eingeblendet wird oder nicht. Auch die Wetteranzeige ist immer rechts statt links (links hatte ich mit css angepasst). Außerdem gibt es bei browser.newtabpage.activity-stream.nova.enabled true nicht die ausführliche Ansicht der Wetteranzeige.

  • Seit Firefox 153.0.4 (64-Bit) leere Kacheln

    • Zitronella
    • 18. August 2026 um 21:50
    Zitat von regie510

    Setze ich die Einstellung auf true, sind mir die Kacheln zu sehr in die Mitte gedrängt bzw. der Abstand dazwischen ist kleiner. Das kann man wahrscheinlich auch mit einem CSS anpassen.

    Dies ist genau auch der Grund bei mir. Wenn mir jemand sagt wie ich das genau mit css anpassen kann würde ich den Schalter auch umlegen.

    Ich hab jetzt mit Hilfe von KI es übrigens hin bekommen, dass es wieder funktioniert.

    CSS
        /* =========================================================
           about:newtab Seite individuell
           ========================================================= */
    
    @-moz-document url(about:newtab), url(about:home){
    /* about:newtab-Seite: Wetter Anzeige nach links */
        .weather {
    		left: 250px !important;
    		right: auto !important;
        }
    
    /* about:newtab-Seite: Hintergrundfarbe geändert */
        body {background-color: #ECECEC !important;}
     
    /* about:newtab-Seite: Automatisch generierte Icons ausblenden
    .icon-wrapper .top-site-icon.default-icon {
      visibility: hidden !important;
    } */
    
    /* about:newtab originales Firefox Icon in Kachel ausblenden */
        .top-site-outer:nth-child(-n+16) .tile .icon-wrapper {
            background: none !important;
        }
    	
    /*about:newtab originales Favicon ausblenden */
        .top-site-outer:nth-child(-n+16) .tile .icon-wrapper > * {
            visibility: hidden !important;
        }
    
    /* about:newtab-Seite: Firefox Logo entfernen */
        .logo-and-wordmark {
    		display:none !important;
        }
    
    /* about:newtab-Seite: Kacheln größer */
        .top-sites-list .top-site-outer .top-site-button {
    		transform: scale(1.1,1.1) !important;
        }
    
    /* about:newtab-Seite: blauen Rahmen bei Klick auf Kachel entfernen */
        .tile {
    		outline: none !important;
        }
    
    /* about:newtab-Seite: Automatisch generierte Anfangs-Buchstaben entfernt */
        .top-site-outer:nth-child(-n+16) .tile .icon-wrapper::before {
            display: none !important;
            content: none !important;
        }
    
    /* about:newtab-Seite: Größe Icon gleich */
        .top-site-outer .default-icon{
    		height: 100% !important;
    		width: 100% !important;
        }
    
    /* about:newtab-Seite: Inhalte wieder die ganze Breite vom Feld (funktioniert nicht)
        .top-site-outer .tile .icon-wrapper {
    		border-radius: 8px !important;
    		width: 100% !important;
    		height: 100% !important;
        } */
    	
    /* about:newtab-Seite: Icons über gesamte Kachel ausdehnen */
        .top-site-outer:nth-child(-n+16) .tile {
            background-position: center !important;
            background-repeat: no-repeat !important;
            background-size: cover !important;
            overflow: hidden !important;
        }
      
    /* about:newtab-Seite: Kacheln mit lokalen Icons versehen */    
    	/* Kachel 1 */
        .top-site-outer:nth-child(1) .tile {
            background-image: url("icons-newtab-seite/camp-firefox.de.png") !important;
        }
        /* Kachel 2 */
        .top-site-outer:nth-child(2) .tile {
            background-image: url("icons-newtab-seite/thunderbird-mail.de") !important;
        }
        /* Kachel 3 */
        .top-site-outer:nth-child(3) .tile {
            background-image: url("icons-newtab-seite/icon3.png") !important;
        }
        /* Kachel 4 */
        .top-site-outer:nth-child(4) .tile {
            background-image: url("icons-newtab-seite/icon4.png") !important;
        }
        /* Kachel 5 */
        .top-site-outer:nth-child(5) .tile {
            background-image: url("icons-newtab-seite/icon5.png") !important;
        }
        /* Kachel 6 */
        .top-site-outer:nth-child(6) .tile {
            background-image: url("icons-newtab-seite/icon6.png") !important;
        }
        /* Kachel 7 */
        .top-site-outer:nth-child(7) .tile {
            background-image: url("icons-newtab-seite/icon7.png") !important;
        }
        /* Kachel 8 */
        .top-site-outer:nth-child(8) .tile {
            background-image: url("icons-newtab-seite/icon8.png") !important;
        }
    	/* Kachel 9 */
        .top-site-outer:nth-child(9) .tile {
            background-image: url("icons-newtab-seite/icon9.png") !important;
        }
        /* Kachel 10 */
        .top-site-outer:nth-child(10) .tile {
            background-image: url("icons-newtab-seite/icon10.png") !important;
        }
        /* Kachel 11 */
        .top-site-outer:nth-child(11) .tile {
            background-image: url("icons-newtab-seite/icon11.png") !important;
        }
        /* Kachel 12 */
        .top-site-outer:nth-child(12) .tile {
            background-image: url("icons-newtab-seite/icon12.png") !important;
        }
        /* Kachel 13 */
        .top-site-outer:nth-child(13) .tile {
            background-image: url("icons-newtab-seite/icon13.png") !important;
        }
        /* Kachel 14 */
        .top-site-outer:nth-child(14) .tile {
            background-image: url("icons-newtab-seite/icon14.png") !important;
        }
        /* Kachel 15 */
        .top-site-outer:nth-child(15) .tile {
            background-image: url("icons-newtab-seite/icon15.png") !important;
        }
        /* Kachel 16 */
        .top-site-outer:nth-child(16) .tile {
            background-image: url("icons-newtab-seite/icon16.png") !important;
        }
    
    }
    Alles anzeigen
  • Seit Firefox 153.0.4 (64-Bit) leere Kacheln

    • Zitronella
    • 18. August 2026 um 14:53
    Zitat von Endor

    browser.search.region

    DE

    Zitat von 2002Andreas

    Und mit dem kompl. Pfad zum Icon?

    auch nicht. Mit dem Pfad wird es wahrscheinlich auch nichts zu tun haben. Es muss mit irgend einer veränderten Einstellung zu tun haben die seit FF 153.0.4 geändert wurde. Siehe meinen Beitrag #7

  • Seit Firefox 153.0.4 (64-Bit) leere Kacheln

    • Zitronella
    • 18. August 2026 um 14:24
    Zitat von 2002Andreas

    Du kannst ja bitte mal etwas testen

    nein, klappt auch nicht.

  • Seit Firefox 153.0.4 (64-Bit) leere Kacheln

    • Zitronella
    • 18. August 2026 um 14:06

    okay. Habe mal jeweils portable Versionen gebastelt und updates deaktiviert mit policies.json. Dann habe ich mein Profil da rein kopiert und festgestellt dass der Fehler auch bei 153.0.3 existiert.

    Dann habe ich ein älteres Profil mal in beide Versionen 153.0.3 und 153.0.4 rein gemacht und da existiert das Problem nur bei 153.0.4.

    aus about:support 153.0.3

    Code
    New Tab	extension	155.1.20260811.195042	true	app-profile	newtab@mozilla.org
    New Tab 155.1.20260811.195042 to Release 153	(rollout)
    New Tab content ping (rest of world rollout)	(treatment)
    Old sidebar is going away soon - Release Rollout	(treatment-a)

    aus about:support 153.0.4

    Code
    New Tab	extension	155.1.20260811.195042	true	app-profile	newtab@mozilla.org
    New Tab 155.1.20260811.195042 to Release 153	(rollout)
    New Tab content ping (rest of world rollout)	(treatment)
    Old sidebar is going away soon - Release Rollout	(treatment-a)

    also die sind identisch


    Zitat von regie510

    "browser.newtabpage.activity-stream.nova.enabled"

    stand und steht bei mir auch auf false

  • Seit Firefox 153.0.4 (64-Bit) leere Kacheln

    • Zitronella
    • 18. August 2026 um 13:07
    Zitat von 2002Andreas

    Ist das auch im Fehlerbehebungsmodus so?

    jain. Also da sind die Icons da (wenn auch kleiner da die css ja nicht geladen wird). Allerdings habe ich für manche Icons auf der about:newtab Seite ein anderes Icon als auf der Webseite eingerichtet gehabt. Dieses wird nicht geladen im Fehlerbehebungsmodus. Also holt sich Firefox das Icon wohl von der Webseite und genau das möchte ich nicht und hab das "irgendwo" auch glaub mal aus gestellt.

    Zitat von Sören Hentzschel

    Änderungen zwischen Firefox 153.0.3 und Firefox 153.0.4 kann ich als Ursache ausschließen.

    ich glaube dir, allerdings ist mir das vorher noch nie passiert und erst seit dem Update. Ich kann ja mal versuchen ob ich es mit einer portablen Version reproduzieren kann mit 153.0.3.

  • Seit Firefox 153.0.4 (64-Bit) leere Kacheln

    • Zitronella
    • 18. August 2026 um 12:45

    Vorab: ich war mir unsicher ob ich es hier oder bei individuelle Anpassungen posten sollte. Falls hier falsch dann bitte verschieben.

    Seit vorhin das Update auf Version 153.0.4 (vorher 153.0.3) aktualisiert wurde sind meine Kacheln auf der about:netwab Seite leer.

    Ich hatte sie vor langer Zeit mit userChrome.css konfiguriert

    CSS
    @-moz-document url(about:newtab), url(about:home){
    /* about:newtab-Seite: Wetter Anzeige nach links */
      .weather {
        left: 250px !important;
        right: auto !important;
      }
    
    /* about:newtab-Seite: Hintergrundfarbe geändert */
     body {background-color: #ECECEC !important;}
     
    /* about:newtab-Seite: Automatisch generierte Icons ausblenden
    .icon-wrapper .top-site-icon.default-icon {
      visibility: hidden !important;
    } */
    
    /* about:newtab-Seite: Firefox Logo entfernen */
      .logo-and-wordmark {
        display:none !important;
      }
    
    /* about:newtab-Seite: Kacheln größer */
      .top-sites-list .top-site-outer .top-site-button {
        transform: scale(1.1,1.1) !important;
      }
    
    /* about:newtab-Seite: blauen Rahmen bei Klick auf Kachel entfernen */
      .tile {
        outline: none !important;
      }
    
    /* about:newtab-Seite: Automatisch generierte Anfangs-Buchstaben entfernt */
    .top-site-outer .tile .icon-wrapper.letter-fallback::before {
    content: attr(data-fallback);
    display:none !important;
    }
    
    /* about:newtab-Seite: Größe Icon gleich */
    .top-site-outer .default-icon{
      height: 100% !important;
      width: 100% !important;
    }
    
    /* about:newtab-Seite: Inhalte wieder die ganze Breite vom Feld */
    .top-site-outer .tile .icon-wrapper {
      border-radius: 8px !important;
      width: 100% !important;
      height: 100% !important;
      }
      
    /* about:newtab-Seite: Kacheln mit lokalen Icons versehen */
      .top-site-outer {
        &:nth-child(1) {
          .top-site-icon {
            background-image: url('icons-newtab-seite/camp-firefox.de.png') !important;
          }
        }
    
        &:nth-child(2) {
          .top-site-icon {
            background-image: url('icons-newtab-seite/thunderbird-mail.de.png') !important;
          }
        }
    
        /* about:newtab-Seite: Automatisch generierte Anfangs-Buchstaben entfernt */
    .top-site-outer .tile .icon-wrapper.letter-fallback::before {
    content: attr(data-fallback);
    display:none !important;
    }
    
    /* about:newtab-Seite: Größe Icon gleich */
    .top-site-outer .default-icon{
      height: 100% !important;
      width: 100% !important;
    }
    
    /* about:newtab-Seite: Inhalte wieder die ganze Breite vom Feld */
    .top-site-outer .tile .icon-wrapper {
      border-radius: 8px !important;
      width: 100% !important;
      height: 100% !important;
      }
      
    /* about:newtab-Seite: Kacheln mit lokalen Icons versehen */
      .top-site-outer {
        &:nth-child(1) {
          .top-site-icon {
            background-image: url('icons-newtab-seite/camp-firefox.de.png') !important;
          }
        }
    
        &:nth-child(2) {
          .top-site-icon {
            background-image: url('icons-newtab-seite/thunderbird-mail.de.png') !important;
          }
        }
    
        &:nth-child(3) {
          .top-site-icon {
            background-image: url('icons-newtab-seite/xxx.png') !important;
          }
        }
    
        &:nth-child(4) {
          .top-site-icon {
            background-image: url('icons-newtab-seite/xxx.jpg') !important;
          }
        }
    
        &:nth-child(5) {
          .top-site-icon {
            background-image: url('icons-newtab-seite/xxx.png') !important;
          }
        }
    
        &:nth-child(6) {
          .top-site-icon {
            background-image: url('icons-newtab-seite/xxx.png') !important;
          }
        }
    
        &:nth-child(7) {
          .top-site-icon {
            background-image: url('icons-newtab-seite/xxx.ico') !important;
          }
        }
    
        &:nth-child(8) {
          .top-site-icon {
            background-image: url('icons-newtab-seite/xxx.png') !important;
          }
        }
    
        &:nth-child(9) {
          .top-site-icon {
            background-image: url('icons-newtab-seite/xxx.png') !important;
          }
        }
    
        &:nth-child(10) {
          .top-site-icon {
            background-image: url('icons-newtab-seite/xxx.png') !important;
          }
        }
    
        &:nth-child(11) {
          .top-site-icon {
            background-image: url('icons-newtab-seite/xxx.png') !important;
          }
        }
    
        &:nth-child(12) {
          .top-site-icon {
            background-image: url('icons-newtab-seite/xxx.png') !important;
          }
        }
    
        &:nth-child(13) {
          .top-site-icon {
            background-image: url('icons-newtab-seite/xxx.png') !important;
          }
        }
    
        &:nth-child(14) {
          .top-site-icon {
            background-image: url('icons-newtab-seite/xxx.png') !important;
          }
        }
    
        &:nth-child(15) {
          .top-site-icon {
            background-image: url('icons-newtab-seite/xxx.png') !important;
          }
        }
    
        &:nth-child(16) {
          .top-site-icon {
            background-image: url('icons-newtab-seite/xxx.png') !important;
          }
        }
    
        .top-site-icon {
          background-position: center !important;
          background-size: contain !important;
          background-repeat: no-repeat !important;
        }
      }
    }
    Alles anzeigen

    (einige Dateinamen zum entsprechenden Bildpfad wegen Privatsphäre im Code mit "xxx" entfernt).

    kann mir jemand sagen woran das liegen könnte? was ich ändern müsste, damit es wieder funktioniert. Ich habe in den Changelog zu Firefox 153.0.4 geschaut, aber daraus kann ich nichts wirklich ableiten.

    Vielen Dank im Voraus.

  • JavaScript ist aktiviert, soll aber aktiviert werden

    • Zitronella
    • 5. Juni 2026 um 12:16

    Mach mal bitte folgenden Test

    https://mozhelp.ddnss.de/dateien/forum/js-test/ je nach Ergebnis findest du evtl. die mögliche Ursache

  • firefox.exe liegt jetzt auf dem Desktop

    • Zitronella
    • 5. Januar 2026 um 20:09

    oder einfach

  • Mozilla veröffentlicht Firefox 145

    • Zitronella
    • 12. November 2025 um 15:50
    Zitat von Sören Hentzschel

    ;)

    ojee wie peinlich *Brille putz*

  • Mozilla veröffentlicht Firefox 145

    • Zitronella
    • 12. November 2025 um 13:55

    Danke für die raschen Antworten. Hier kommt man ja gar nicht hinterher so schnell wie ihr seid. Mal sehen ob ich es ändere oder mich versuche daran zu gewöhnen. Bezüglich Hover fiel mir keine Veränderung auf.

  • Mozilla veröffentlicht Firefox 145

    • Zitronella
    • 12. November 2025 um 13:51

    EDIT: ok, ich halluziniere wohl doch nicht. Sie sind tatsächlich anders geworden mit FF 145 nämlich runder. Habe mir jetzt Bilder angesehen vom Artikel "Mozilla veröffentlicht Firefox 144" und verglichen

    Außerdem stehts auch im Changelog 

    Zitat

    Horizontal tabs are now slightly more rounded to match the look of vertical tabs. Buttons and text inputs, including the address bar, have also been updated for consistency.

  • Mozilla veröffentlicht Firefox 145

    • Zitronella
    • 12. November 2025 um 13:46

    Hab vorhin aktualisiert und mir fällt auf dass die Tabs irgendwie anders aussehen als bei FF 144.x. Weiß nur noch nicht was genau sich verändert hat :/, aber gefiel mir vorher besser. Danke für deinen Artikel, habe ihn allerdings nur überflogen und nach "Tab" durchsucht. Aber bezüglich des Aussehens stand da nix drin. Ich bin bissel verwirrt. Muss mich mal auf die Suche machen, wie es vorher aussah oder ob ich halluziniere ||

  • False Positive: Webseite https://mozhelp.ddnss.de/guide/mit-adwcleaner-suchen wird von Google Safe Browsing als Bedrohung gemeldet

    • Zitronella
    • 2. Oktober 2025 um 15:02

    Ich habe leider gerade wenig Zeit und muss gucken wann ich mich aktiv darum kümmern kann. Nehmt so lange die Sicherheitswarnung ernst, auch wenn es nervig ist. Sorry. Da hat Sören durchaus recht wenn er schreibt, dass man die Sicherheit der Seite nicht durch meine Person begründen kann.

Unterstütze uns!

Jährlich (2026)

71,6 %

71,6% (554,79 von 775 EUR)

Jetzt spenden
  1. Kontakt
  2. Datenschutz
  3. Impressum
Community-Software: WoltLab Suite™
Mastodon