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. Mitleser

Beiträge von Mitleser

  • Mozilla veröffentlicht Firefox 129

    • Mitleser
    • 13. August 2024 um 22:19
    Zitat von Webmark

    Ein Screenshot der geöffneten Website (bisher) nicht.

    Das ist wohl so gewollt; die geöffnete Website siehst du ja im geöffneten Tab.

  • HTTPS: URL-Leiste einfärben auf Basis Verbindungssicherheit

    • Mitleser
    • 11. August 2024 um 19:15

    So, habe das nochmal ausgiebig getestet und für GUT befunden:

    CSS
    /*■■■■■■■■■■■■■■■■■Schloss■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
    /*Secure lock icon in urlbar*/
    
    /* Green */
    #identity-box[pageproxystate="valid"].verifiedDomain #identity-icon {
        fill: green !important;
        fill-opacity: 1 !important;
        transition: 100ms linear !important;
    }
    #identity-box[pageproxystate="valid"].mixedActiveBlocked #identity-icon {
        fill: green !important;
        fill-opacity: 1 !important;
        transition: 100ms linear !important;
    }
    #identity-box[pageproxystate="valid"].verifiedIdentity #identity-icon {
        fill: green !important;
        fill-opacity: 1 !important;
        transition: 100ms linear !important;
    }
    #identity-popup[connection^="secure"] .identity-popup-security-connection {
        background-color: green !important;
    }
    
    /* Red */
    #identity-box[pageproxystate="valid"].notSecure #identity-icon {
        fill: red !important;
        fill-opacity: 1 !important;
        transition: 100ms linear !important;
    }
    #identity-box[pageproxystate="valid"].mixedActiveContent #identity-icon {
        fill: red !important;
        fill-opacity: 1 !important;
        transition: 100ms linear !important;
    }
    #identity-box[pageproxystate="valid"].insecureLoginForms #identity-icon {
        fill: red !important;
        fill-opacity: 1 !important;
        transition: 100ms linear !important;
    }
    .identity-popup-security-connection {
       background-color: red !important;
    }
    
    /* Orange */
    #identity-box[pageproxystate="valid"].mixedDisplayContent #identity-icon {
        fill: orange !important;
        fill-opacity: 1 !important;
        transition: 100ms linear !important;
    }
    #identity-popup[mixedcontent~="passive-loaded"][isbroken] .identity-popup-security-connection {
       background-color: orange !important;
    }
    
    /* Yellow */
    #identity-box[pageproxystate="valid"].mixedDisplayContentLoadedActiveBlocked #identity-icon {
        fill: yellow !important;
        fill-opacity: 1 !important;
        transition: 100ms linear !important;
    }
    #identity-box[pageproxystate="valid"].certUserOverridden #identity-icon {
        fill: yellow !important;
        fill-opacity: 1 !important;
        transition: 100ms linear !important;
    }
    /*■■■■■■■■■■■■■■■■■Schriftfarbe■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
    /* Mixed content including neterror */
    #identity-box[pageproxystate="valid"].unknownIdentity ~ .urlbar-input-box { 
        color: red !important;
    }
    /* http: and potentially some other insecure connections */
    #identity-box[pageproxystate="valid"].notSecure ~ .urlbar-input-box {
        color: red !important;
    }
    /* Extension pages */
    #identity-box[pageproxystate="valid"].extensionPage ~ .urlbar-input-box { 
    	color: purple !important;
    }
    /* Internal about: and chrome:// urls (includes reader-view) */
    #identity-box[pageproxystate="valid"].localResource ~ .urlbar-input-box,
    #identity-box[pageproxystate="valid"].chromeUI ~ .urlbar-input-box { 
    	color: green !important;
    }
    Alles anzeigen
  • HTTPS: URL-Leiste einfärben auf Basis Verbindungssicherheit

    • Mitleser
    • 11. August 2024 um 15:53

    Erledigt!

  • HTTPS: URL-Leiste einfärben auf Basis Verbindungssicherheit

    • Mitleser
    • 11. August 2024 um 15:29

    Falsch!

    habe nur kurz mal dies getestet und funktionierende Beispiel-URL's einkommentiert!

    EDIT: Kommentar in Zeile 6 angepasst

    CSS
    /*■■■■■■■■■■■■■■■■■Schriftfarbe■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
    /* Mixed content including neterror *//* funzt bei   about:neterror/netTimeout/ */
    #identity-box[pageproxystate="valid"].unknownIdentity ~ .urlbar-input-box { 
        color: red !important;
    }
    /* http: and potentially some other insecure connections: */
    /* funzt bei   http://fritz.box/*/
    #identity-box[pageproxystate="valid"].notSecure ~ .urlbar-input-box {
        color: red !important;
    }
    /* Extension pages *//* funzt bei allen  Erweiterungen*/
    #identity-box[pageproxystate="valid"].extensionPage ~ .urlbar-input-box { 
    	color: purple !important;
    }
    /* Internal about: and chrome:// urls (includes reader-view) */
    /* funzt bei   reader-view*/
    /* funzt bei   about:about*/
    #identity-box[pageproxystate="valid"].localResource ~ .urlbar-input-box,
    #identity-box[pageproxystate="valid"].chromeUI ~ .urlbar-input-box { 
    	color: green !important;
    }
    Alles anzeigen
  • HTTPS: URL-Leiste einfärben auf Basis Verbindungssicherheit

    • Mitleser
    • 10. August 2024 um 22:49

    Ich habe etwas Ähnliches. Vielleicht kannst Du davon ja etwas ableiten?

    CSS
    /*■■■■■■■■■■■■■■■■■Schloss■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
    /*Secure lock icon in urlbar*/
    
    /* Green */
    #identity-box[pageproxystate="valid"].verifiedDomain #identity-icon {
        fill: green !important;
        fill-opacity: 1 !important;
        transition: 100ms linear !important;
    }
    #identity-box[pageproxystate="valid"].mixedActiveBlocked #identity-icon {
        fill: green !important;
        fill-opacity: 1 !important;
        transition: 100ms linear !important;
    }
    #identity-box[pageproxystate="valid"].verifiedIdentity #identity-icon {
        fill: green !important;
        fill-opacity: 1 !important;
        transition: 100ms linear !important;
    }
    #identity-popup[connection^="secure"] .identity-popup-security-connection {
        fill: green !important;
    }
    
    /* Red */
    #identity-box[pageproxystate="valid"].notSecure #identity-icon {
        fill: red !important;
        fill-opacity: 1 !important;
        transition: 100ms linear !important;
    }
    #identity-box[pageproxystate="valid"].mixedActiveContent #identity-icon {
        fill: red !important;
        fill-opacity: 1 !important;
        transition: 100ms linear !important;
    }
    #identity-box[pageproxystate="valid"].insecureLoginForms #identity-icon {
        fill: red !important;
        fill-opacity: 1 !important;
        transition: 100ms linear !important;
    }
    .identity-popup-security-connection {
        fill: red !important;
    }
    
    /* Orange */
    #identity-box[pageproxystate="valid"].mixedDisplayContent #identity-icon {
        fill: orange !important;
        fill-opacity: 1 !important;
        transition: 100ms linear !important;
    }
    #identity-popup[mixedcontent~="passive-loaded"][isbroken] .identity-popup-security-connection {
        fill: orange !important;
    }
    
    /* Yellow */
    #identity-box[pageproxystate="valid"].mixedDisplayContentLoadedActiveBlocked #identity-icon {
        fill: yellow !important;
        fill-opacity: 1 !important;
        transition: 100ms linear !important;
    }
    #identity-box[pageproxystate="valid"].certUserOverridden #identity-icon {
        fill: yellow !important;
        fill-opacity: 1 !important;
        transition: 100ms linear !important;
    }
    /*■■■■■■■■■■■■■■■■■Schriftfarbe■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
    /* Mixed content including neterror */
    #identity-box[pageproxystate="valid"].unknownIdentity ~ .urlbar-input-box { 
        color: red !important;
    }
    /* http: and potentially some other insecure connections like ftp: */
    #identity-box[pageproxystate="valid"].notSecure ~ .urlbar-input-box {
        color: red !important;
    }
    /* Extension pages */
    #identity-box[pageproxystate="valid"].extensionPage ~ .urlbar-input-box { 
    	color: purple !important;
    }
    /* Internal about: and chrome:// urls (includes reader-view) */
    #identity-box[pageproxystate="valid"].localResource ~ .urlbar-input-box,
    #identity-box[pageproxystate="valid"].chromeUI ~ .urlbar-input-box { 
    	color: green !important;
    }
    Alles anzeigen
  • userChrome.js Scripte für den Fuchs (Diskussion)

    • Mitleser
    • 10. August 2024 um 16:09

    Mira_Belle Diese Lsg. funzt hier auch gut; es ist aber letztlich auch eine ungeheure 'Fleißarbeit' diesen alten Button - ich denke ursprünglich mal von Aris? - wieder auf heutiges Niveau zu bringen (verschiebbarer Button, base64 entfernen und durch .svg ersetzen, Links auf Profil globalisieren usw.).
    Bist Du sicher dass Du dir das antuen willst?

  • userChrome.js Scripte für den Fuchs (Diskussion)

    • Mitleser
    • 9. August 2024 um 22:31

    Danke, verzichte.
    Solange das Problem mit dem 'Hilfe-Menü' nicht gelöst ist, ist alles Andere uninteressant!

  • Windows 7 & Co.: Immer noch viele unsichere PCs im Einsatz

    • Mitleser
    • 15. Juli 2024 um 23:40
    Zitat von BrokenHeart

    Gedankenkompott

    :thumbup::!:

  • Symbole in den Kontextmenüs [ Update ]

    • Mitleser
    • 11. Juli 2024 um 20:53

    Ich nutze diese Beiden für Links normal/ohne: Link.zip

  • Firefox das Installieren und Durchführen von Studien erlauben

    • Mitleser
    • 19. Juni 2024 um 23:42

    Schau mal seine Vita an.
    Etwas anderes kann der nicht!

  • leerenTabnutzen.uc blockiert Lesezeichen öffnen

    • Mitleser
    • 18. Juni 2024 um 18:51

    milupo Das wird nicht reichen, da diese Änderung auch an vielen anderen Stellen im Script relevant ist.

    Beitrag

    RE: Startseite

    Es ist jetzt genau das eingetreten wovor Sören gewarnt hat:

    Nicht nur das Script funktioniert nicht mehr, sondern auch z.B. das Tabkontextmenü > Alle Lesezeichen in Tabs öffnen ist durch die Nutzung des oben erwähnten Scripts funktonslos!!
    Sollte jemand das Script - trotz ausdrücklicher Warnungen - in FF127 noch nutzen wollen, hier ist das update auf FF127:

    (Quelltext, 53 Zeilen)

    Mitleser
    13. Juni 2024 um 18:12
  • leerenTabnutzen.uc blockiert Lesezeichen öffnen

    • Mitleser
    • 18. Juni 2024 um 18:12

    Evtl. bringt dich das weiter, achte bitte auch auf die Warnungen zur Nutzung dieses Scripts:

    Beitrag

    Startseite

    Hallo zusammen,

    bereits seit vielen Jahren habe ich die Startseite von Firefox folgendermaßen festgelegt.


    Dies entspricht auch nahezu perfekt meinen Vorstellungen, abgesehen von dem "Neuen Tab", der beim Start von Firefox angezeigt wird.


    Nach dem Start von Firefox rufe ich in der Regel zunächst meine favorisierten Lesezeichen mittels (Alle in Tabs öffnen) auf, dabei "stört" mich ein wenig der erwähnte "Neue Tab", den ich dann schließe.

    Natürlich stellt dieser Tab kein Problem dar, aber gibt es…
    Webmark
    3. Mai 2024 um 18:32
  • Automatischer Screenshot

    • Mitleser
    • 14. Juni 2024 um 22:32
    Zitat von saobento

    Mit vokoscreenNG geht es direkt, ich habe das gerade ausprobiert. Die Datei wird aber auch sehr groß.

    Funzt nicht: keine Möglichkeit das Video in einem Gif-container zu speichern. An den Codecs liegt es nicht, Breche das jetzt hier mal ab. Gerne über PN weiter.

  • Automatischer Screenshot

    • Mitleser
    • 14. Juni 2024 um 19:56

    saobento Kurze Rückmeldung:

    Zitat von Mitleser

    werde ich morgen mal testen!

    Speichert leider nicht in den hier erforderlichen gif-Container.

    Animated GIF output? · Issue #196 · MaartenBaert/ssr
    Hey there, I notice you can select gif as a container format, but it doesn't seem to work, failing when you hit start recording. Any hints?
    github.com
  • Automatischer Screenshot

    • Mitleser
    • 13. Juni 2024 um 21:01

    Dankeschön,

    Zitat von saobento

    simplescreenrecorder

    werde ich morgen mal testen!

  • Automatischer Screenshot

    • Mitleser
    • 13. Juni 2024 um 20:53

    Leider nur mit wine on Linux:
    LICEcap
    simple animated screen captures
    Linux: apparently works with WINE

  • Automatischer Screenshot

    • Mitleser
    • 13. Juni 2024 um 20:26

    Geht das nicht mit FN-Taste + F4?

    Frage: ScreenVideos sind ja beeindruckend. Ich suche eine Software für Linux.

  • Startseite

    • Mitleser
    • 13. Juni 2024 um 18:12

    Es ist jetzt genau das eingetreten wovor Sören gewarnt hat:

    Nicht nur das Script funktioniert nicht mehr, sondern auch z.B. das Tabkontextmenü > Alle Lesezeichen in Tabs öffnen ist durch die Nutzung des oben erwähnten Scripts funktonslos!!
    Sollte jemand das Script - trotz ausdrücklicher Warnungen - in FF127 noch nutzen wollen, hier ist das update auf FF127:

    JavaScript
    // JavaScript Document
    /*
    Wenn man mehrere Lesezeichen zugleich in Tabs öffnet, wird dabei der fokussierte Tab nicht überschrieben. Das Skript bewirkt, dass dieser Tab, wenn er leer ist, für das erste der Lesezeichen benutzt wird. Ein Tab gilt in diesem Zusammenhang im Wesentlichen dann als leer, wenn er die Seite about:blank, about:newtab oder about:home enthält. Genauer steht es hier im Quelltext:
    isEmpty und isBlankPageURL
    Das Skript verändert die Funktion PlacesUIUtils.openTabset, die für das gleichzeitige Öffnen mehrerer Tabs zuständig ist.
    */
    (function() {
    
      if (window.__SSi != 'window0')
        return;
    
      PlacesUIUtils.openTabset = function openTabset(aItemsToOpen, aEvent, aWindow) {
        if (!aItemsToOpen.length)
          return;
        let browserWindow = aWindow &&
          aWindow.document.documentElement.getAttribute("windowtype") == "navigator:browser" ?
          aWindow : BrowserWindowTracker.getTopWindow();
        var urls = [];
        let skipMarking = browserWindow && PrivateBrowsingUtils.isWindowPrivate(browserWindow);
        for (let item of aItemsToOpen) {
          urls.push(item.uri);
          if (skipMarking)
            continue;
          if (item.isBookmark)
            this.markPageAsFollowedBookmark(item.uri);
          else
            this.markPageAsTyped(item.uri);
        }
        var where = browserWindow ?
          browserWindow.BrowserUtils.whereToOpenLink(aEvent, false, true) : "window";
        if (where == "window") {
          let args = Cc["@mozilla.org/array;1"].createInstance(Ci.nsIMutableArray);
          let stringsToLoad = Cc["@mozilla.org/array;1"].createInstance(Ci.nsIMutableArray);
          urls.forEach(url => stringsToLoad.appendElement(PlacesUtils.toISupportsString(url)));
          args.appendElement(stringsToLoad);
          browserWindow = Services.ww.openWindow(
            aWindow,
            AppConstants.BROWSER_CHROME_URL,
            null,
            "chrome,dialog=no,all",
            args
          );
          return;
        }
        var loadInBackground = (where == "tabshifted");
        browserWindow.gBrowser.loadTabs(urls, {
          inBackground: loadInBackground,
          replace: browserWindow.gBrowser.selectedTab.isEmpty,
          triggeringPrincipal: Services.scriptSecurityManager.getSystemPrincipal(),
        });
      };
    
    })();
    Alles anzeigen
  • Tagesschau.de Audiofenster in Artikel

    • Mitleser
    • 12. Juni 2024 um 18:58
    Zitat von Firefox_94.0.1

    Ja. Perfekt.

    Leider nein! Starte mal den Player. Jetzt aber (kürzen musst du selber):

    CSS
    /*player inaktiv*/
    .mediaplayer.mediaplayer--reduced-m.mediaplayer--audio.mediaplayer--lazy-loading.mediaplayer--loaded div.player.ardplayer.ardplayer-show-controls.ardplayer-state-audio.ardplayer-state-audio-inline.ardplayer-state-inactive.ardplayer-m.ardplayer-bs-break {
      background-color: red !important;
    }
    /*player spielt ab*/
    .mediaplayer.mediaplayer--reduced-m.mediaplayer--audio.mediaplayer--lazy-loading.mediaplayer--loaded div.player.ardplayer.ardplayer-show-controls.ardplayer-state-audio.ardplayer-state-audio-inline.ardplayer-m.ardplayer-bs-break {
      background-color: green !important;
    }
  • Tagesschau.de Audiofenster in Artikel

    • Mitleser
    • 12. Juni 2024 um 18:36

    Ok, dann auf die harte Tour:

    CSS
    .mediaplayer.mediaplayer--reduced-m.mediaplayer--audio.mediaplayer--lazy-loading.mediaplayer--loaded div.player.ardplayer.ardplayer-show-controls.ardplayer-state-audio.ardplayer-state-audio-inline.ardplayer-state-inactive.ardplayer-m.ardplayer-bs-break {
      background-color: red !important;
    }

    Jetzt?

Unterstütze uns!

Jährlich (2025)

92,9 %

92,9% (604,17 von 650 EUR)

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