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

Beiträge von AngelOfDarkness

  • Group Speed Dial autom.Sicherung wo ?

    • AngelOfDarkness
    • 30. Januar 2019 um 22:47

    Hallo Schnatz,

    willkommen hier im Forum.
    Willst du nicht mit deinem ganzen Fieefox Profil umziehen? Wenn ja, dann lies mal hier: https://www.at2907.net/tipps1/tipp15.php

  • FF Absturz nach StandBy

    • AngelOfDarkness
    • 30. Januar 2019 um 22:41

    Nur die notwendigsten Updates ist generell schlecht. Es sollten alle gemacht werden, die vom Windows Updater kommen. Zudem auch immer die der jeweiligen Hardwarehersteller. Und Säuberungstools, wie z.B. CCleaner oder die der grossen Sicherheits-Suiten, sollten besser gar nicht genutzt werden. Erstere höchstens, wenn man genau erklären kann, was das Tool genau kann und wieso man das macht.

  • synchronisation

    • AngelOfDarkness
    • 30. Januar 2019 um 22:29

    Oder noch besser...entferne Kaspersky mit dem Herstellertool komplett von Windows 10, denn unter Windows 10 wird keine separate Sicherheitssoftware mehr benötigt. Der Windows Defender kann dies genauso gut. Außerdem verschlechtert eine zusätzliche Sicherheitssoftware nur unnötig die Sicherheit des Systems. Siehe dazu auch das Sicherheitskonzept in meiner Signatur.

  • css - Tabs unten

    • AngelOfDarkness
    • 30. Januar 2019 um 17:39

    Fox2Fox

    schau mal hier, da habe ich es mal genau beschrieben: https://www.camp-firefox.de/forum/viewtopi…103058#p1103058

  • Meldungen über Spam im Forum

    • AngelOfDarkness
    • 30. Januar 2019 um 06:02

    https://www.camp-firefox.de/forum/viewtopi…103057#p1103057

  • FF 65 - Tabs nach unten

    • AngelOfDarkness
    • 30. Januar 2019 um 05:15
    Zitat von goerg01


    ... ich habe jetzt beide Code's in die userChrome.css geschrieben gespeichert, FF neu gestartet und nix


    Dies ist auch falsch... Entferne die beiden Codes wieder. Und gehe wie folgt vor...


    Hast du auch deinen alten Code für den Leistentausch aus der userChrome.css entfernt und stattdessen nur folgende Zeile dafür eingefügt?

    Code
    @import "./css/tabs_below_navigation_toolbar_fx65.css";

    Dann musst du im Ordner /chrome den Ordner /css erstellen bzw. diesen bereits erstellt haben.

    Im Ordner /css müssen dann zwei Dateien liegen. Einmal die Datei tabs_below_navigation_toolbar_fx65.css mit folgendem Inhalt

    CSS
    /* Firefox Quantum userChrome.css tweaks ************************************************/
    /* Github: https://github.com/aris-t2/customcssforfx ************************************/
    /****************************************************************************************/
    
    
    
    
    @import "./tabs_below_navigation_toolbar.css";
    
    
    /* [!] NOT A STANDALONE FILE! */
    /* [!] This code does not achieve the requested result without above files content! */
    
    
    #main-window:not([chromehidden*="toolbar"]) #navigator-toolbox {
      padding-bottom: calc(1px + var(--tab-min-height_tnot)) !important;
    }
    
    
    #TabsToolbar {
      position: absolute !important;
      bottom: 0 !important;
      width: 100vw !important;
    }
    
    
    #tabbrowser-tabs {
      width: 100vw !important;
    }
    
    
    /* make sure button icon colors set correctly */
    #main-window:not(:-moz-lwtheme) #TabsToolbar-customization-target toolbarbutton .toolbarbutton-icon,
    #main-window:not([style*='--lwt-header-image']):-moz-lwtheme:-moz-lwtheme-darktext #TabsToolbar-customization-target toolbarbutton .toolbarbutton-icon {
      fill: var(--classic_squared_tabs_new_tab_icon_color) !important;
      color: var(--classic_squared_tabs_new_tab_icon_color) !important;
    }
    
    
    /* move caption buttons to windows top right position */
    #main-window[tabsintitlebar]:not([inDOMFullscreen="true"]) #toolbar-menubar[autohide="true"] ~ #TabsToolbar .titlebar-buttonbox-container {
      position: fixed !important;
      right: 0 !important;
      visibility: visible !important;
      display: block !important;
    }
    
    
    /* caption button position in maximized mode after moving to the top */
    #main-window[tabsintitlebar]:not([inDOMFullscreen="true"]) #toolbar-menubar[autohide="true"] ~ #TabsToolbar .titlebar-buttonbox-container,
    #main-window[tabsintitlebar][sizemode="maximized"]:not([inDOMFullscreen="true"]) #TabsToolbar .titlebar-buttonbox-container {
      top: -14px !important;
    }
    
    
    
    
    /* Windows */
    @media (-moz-os-version:windows-win10), (-moz-os-version:windows-win8), (-moz-os-version:windows-win7) {
    	#main-window[tabsintitlebar]:not([inDOMFullscreen="true"]) #toolbar-menubar[autohide="true"] ~ #TabsToolbar .titlebar-buttonbox-container	{
    	  top: 1px !important;
    	}
    	#main-window[tabsintitlebar][sizemode="maximized"]:not([inDOMFullscreen="true"]) #toolbar-menubar[autohide="true"] ~ #TabsToolbar .titlebar-buttonbox-container {
    	  top: 8px !important;
    	}
    }
    
    
    /* Windows 7 extra tweaks */
    @media (-moz-os-version: windows-win7) {
      @media all and (-moz-windows-compositor) {
    	#main-window[tabsintitlebar]:not([inDOMFullscreen="true"]) #toolbar-menubar[autohide="true"] ~ #TabsToolbar .titlebar-buttonbox-container {
    	  display: none !important;
    	}
      }
      @media not all and (-moz-windows-compositor) {
    	#main-window[tabsintitlebar]:not([inDOMFullscreen="true"]) #toolbar-menubar[autohide="true"] ~ #TabsToolbar .titlebar-buttonbox-container {
    	  top: -2px !important;
    	}
    	#main-window[tabsintitlebar][sizemode="maximized"]:not([inDOMFullscreen="true"]) #toolbar-menubar[autohide="true"] ~ #TabsToolbar .titlebar-buttonbox-container {
    	  top: 0px !important;
    	}
    	#main-window[tabsintitlebar]:not([inDOMFullscreen="true"]) #toolbar-menubar[autohide="true"]:not([inactive="true"]) ~ #TabsToolbar .titlebar-buttonbox-container {
    	  display: none !important;
    	}
      }
    }
    
    
    /* Windows 10 extra tweaks */
    @media (-moz-os-version: windows-win10) {
      #main-window:not([tabsintitlebar]) menubar > menu:not(:-moz-lwtheme):hover:not([disabled="true"]),
      #main-window:not([tabsintitlebar]) menubar > menu:not(:-moz-lwtheme)[_moz-menuactive="true"]:not([disabled="true"]) {
    	background-color: Highlight !important;
    	color: HighlightText !important;
      }
    }
    
    
    /* tweaks for fullscreen mode */
    #main-window[tabsintitlebar][sizemode="fullscreen"] #toolbar-menubar[autohide="true"] ~ #TabsToolbar .titlebar-buttonbox-container,
    #main-window[tabsintitlebar][sizemode="fullscreen"] #navigator-toolbox #PanelUI-button,
    #main-window #TabsToolbar #window-controls {
      display: none !important;
    }
    
    
    /* hide non-required items */
    #TabsToolbar .private-browsing-indicator,
    #TabsToolbar #window-controls,
    #TabsToolbar *[type="caption-buttons"],
    #TabsToolbar *[type="pre-tabs"],
    #TabsToolbar *[type="post-tabs"] {
      display: none !important;
    }
    
    
    /* adjust tabs toolbar padding */
    #main-window:-moz-any([sizemode="normal"],[sizemode="maximized"],[sizemode="fullscreen"]) #navigator-toolbox #toolbar-menubar[autohide="true"][inactive="true"] ~ #TabsToolbar,
    #main-window[tabsintitlebar]:-moz-any([sizemode="normal"],[sizemode="maximized"],[sizemode="fullscreen"]) #navigator-toolbox #toolbar-menubar[autohide="true"][inactive="true"] ~ #TabsToolbar,
    #main-window:-moz-any([sizemode="normal"],[sizemode="maximized"],[sizemode="fullscreen"]) #navigator-toolbox #TabsToolbar,
    #main-window[tabsintitlebar]:-moz-any([sizemode="normal"],[sizemode="maximized"],[sizemode="fullscreen"]) #navigator-toolbox #TabsToolbar {
     -moz-padding-start: 0px !important;
     -moz-margin-start: 0px !important;
    }
    
    
    /* hide line above navigation toolbar appearing in some cases */
    #main-window:not([tabsintitlebar]) #nav-bar,
    #main-window:not([tabsintitlebar]) #navigator-toolbox {
      border-top: 0 !important;
      box-shadow: unset !important;
    }
    
    
    /* disable Mozillas tab jumping nonsense when moving tabs */
    #navigator-toolbox[movingtab] > #titlebar > #TabsToolbar {
      padding-bottom: unset !important;
    }
    #navigator-toolbox[movingtab] #tabbrowser-tabs {
      padding-bottom: unset !important;
      margin-bottom: unset !important;
    }
    #navigator-toolbox[movingtab] > #nav-bar {
      margin-top: unset !important;
    }
    
    
    /* size of new tab tabs '+' icon */
    .tabs-newtab-button .toolbarbutton-icon {
      padding: 0px !important;
      margin: 0px !important;
      width: 18px !important;
      height: 18px !important;
    }
    Alles anzeigen

    Dieser erste Code läd dann (ebenfalls durch eine Importregel (@import) den folgenden Code automatisch nach. Daher muss dann noch die Datei tabs_below_navigation_toolbar.css mit folgendem Inhalt in den Ordner /css (innerhalb des Ordners /chrome)

    CSS
    /* Firefox Quantum userChrome.css tweaks ************************************************/
    /* Github: https://github.com/aris-t2/customcssforfx ************************************/
    /****************************************************************************************/
    
    
    
    
    :root {
      --colored_menubar_background_image: linear-gradient(#f9f9fa,#f9f9fa);
      --general_toolbar_color_toolbars: linear-gradient(#f9f9fa,#f9f9fa);
      --general_toolbar_color_navbar: linear-gradient(#f9f9fa,#f9f9fa);
      --tabs_toolbar_color_tabs_not_on_top: linear-gradient(#f9f9fa,#f9f9fa);
      --tabs_toolbar_border-tnot_normal_mode_size: 1px;
      --tabs_toolbar_border-tnot_normal_mode: var(--tabs-border-color);
      --classic_squared_tabs_tab_text_color: black;
      --classic_squared_tabs_new_tab_icon_color: black;
      --classic_squared_tabs_tab_text_shadow: transparent;
      --tab-min-height_tnot: 32px;
    }
    
    
    :root[uidensity=compact]  {
      --tab-min-height_tnot: 28px;
    }
    
    
    :root[uidensity=touch] {
      --tab-min-height_tnot: 40px;
    }
    
    
    /* tabs toolbar adjustment */
    #main-window[tabsintitlebar] #toolbar-menubar[autohide="true"][inactive="true"] ~ #TabsToolbar, 
    #main-window[tabsintitlebar][sizemode="maximized"] #toolbar-menubar[autohide="true"][inactive="true"] ~ #TabsToolbar,
    #main-window[uidensity=compact][tabsintitlebar] #toolbar-menubar[autohide="true"][inactive="true"] ~ #TabsToolbar,
    #main-window[uidensity=compact][tabsintitlebar][sizemode="maximized"] #toolbar-menubar[autohide="true"][inactive="true"] ~ #TabsToolbar,
    #TabsToolbar {
      -moz-padding-start: 2px !important;
    }
    
    
    #main-window[tabsintitlebar] #toolbar-menubar[autohide="true"][inactive="true"] ~ #TabsToolbar:-moz-lwtheme, 
    #main-window[tabsintitlebar][sizemode="maximized"] #toolbar-menubar[autohide="true"][inactive="true"] ~ #TabsToolbar:-moz-lwtheme,
    #main-window[uidensity=compact][tabsintitlebar] #toolbar-menubar[autohide="true"][inactive="true"] ~ #TabsToolbar:-moz-lwtheme,
    #main-window[uidensity=compact][tabsintitlebar][sizemode="maximized"] #toolbar-menubar[autohide="true"][inactive="true"] ~ #TabsToolbar:-moz-lwtheme,
    #TabsToolbar:-moz-lwtheme,
    #main-window[tabsintitlebar][sizemode="maximized"] #toolbar-menubar[autohide="true"][inactive="true"] ~ #TabsToolbar,
    #main-window[uidensity=compact][tabsintitlebar][sizemode="maximized"] #toolbar-menubar[autohide="true"][inactive="true"] ~ #TabsToolbar,
    #main-window[sizemode="maximized"] #TabsToolbar,
    #main-window[tabsintitlebar]:not([style*='--lwt-header-image']):-moz-lwtheme #navigator-toolbox #toolbar-menubar[autohide="true"][inactive="true"] ~ #TabsToolbar, 
    #main-window[tabsintitlebar][sizemode="maximized"]:not([style*='--lwt-header-image']):-moz-lwtheme #toolbar-menubar[autohide="true"][inactive="true"] ~ #TabsToolbar,
    #main-window[uidensity=compact][tabsintitlebar]:not([style*='--lwt-header-image']):-moz-lwtheme #toolbar-menubar[autohide="true"][inactive="true"] ~ #TabsToolbar,
    #main-window[uidensity=compact][tabsintitlebar][sizemode="maximized"]:not([style*='--lwt-header-image']):-moz-lwtheme #toolbar-menubar[autohide="true"][inactive="true"] ~ #TabsToolbar,
    #main-window[tabsintitlebar]:not([style*='--lwt-header-image']):-moz-lwtheme #TabsToolbar {
      -moz-padding-start: 0px !important;
    }
    
    
    #main-window[tabsintitlebar][sizemode="normal"]:not([sizemode="fullscreen"]) #TabsToolbar {
      margin-top: 0px !important;
    }
    
    
    #main-window[tabsintitlebar][sizemode="normal"][chromehidden~="menubar"] #TabsToolbar,
    #main-window[tabsintitlebar][sizemode="normal"] #toolbar-menubar[autohide="true"][inactive] + #TabsToolbar,
    #main-window[tabsintitlebar][sizemode="maximized"][chromehidden~="menubar"] #TabsToolbar,
    #main-window[tabsintitlebar][sizemode="maximized"] #toolbar-menubar[autohide="true"][inactive] + #TabsToolbar {
      padding-top: 0px !important;
    }
    
    
    #main-window[tabsintitlebar] #toolbar-menubar[autohide="true"]:not([inactive="true"]) ~ #TabsToolbar,
    #main-window[tabsintitlebar] #toolbar-menubar[autohide="false"] ~ #TabsToolbar{
      margin-top: 0px !important;
    }
    
    
    /* tab title in titlebar support */
    #main-window[tabsintitlebar][sizemode="normal"] #navigator-toolbox #TabsToolbar,
    #main-window[uidensity=compact][tabsintitlebar][sizemode="normal"] #navigator-toolbox #TabsToolbar,
    #main-window[tabsintitlebar][sizemode="maximized"] #navigator-toolbox #TabsToolbar,
    #main-window[uidensity=compact][tabsintitlebar][sizemode="maximized"] #navigator-toolbox #TabsToolbar,
    #main-window[tabsintitlebar][sizemode="normal"] #navigator-toolbox #toolbar-menubar[autohide="true"][inactive="true"] ~ #TabsToolbar,
    #main-window[uidensity=compact][tabsintitlebar][sizemode="normal"] #navigator-toolbox #toolbar-menubar[autohide="true"][inactive="true"] ~ #TabsToolbar,
    #main-window[tabsintitlebar][sizemode="maximized"] #navigator-toolbox #toolbar-menubar[autohide="true"][inactive="true"] ~ #TabsToolbar,
    #main-window[uidensity=compact][tabsintitlebar][sizemode="maximized"] #navigator-toolbox #toolbar-menubar[autohide="true"][inactive="true"] ~ #TabsToolbar{
      margin-top: 0px !important;
    }
    
    
    /* titlebar button support */
    #main-window[tabsintitlebar] #toolbar-menubar[autohide="true"][inactive="true"] ~ #nav-bar{
      margin-top: 2px !important;
    }
    
    
    /* fix for application/hamburger button in titlebar */
    #main-window[tabsintitlebar][sizemode="fullscreen"] #toolbar-menubar[autohide="true"][inactive="true"] ~ #nav-bar #PanelUI-button {
      visibility: collapse !important;
    }
    
    
    #main-window[inDOMFullscreen="true"] #TabsToolbar {
      opacity: 0 !important;
    }
    
    
    /* tab height */
    #tabbrowser-tabs,
    #tabbrowser-tabs > .tabbrowser-arrowscrollbox,
    .tabbrowser-tabs[positionpinnedtabs] > .tabbrowser-tab[pinned] {
      min-height: var(--tab-min-height_tnot) !important;
    }
    
    
    /* toolbar order (start) ************************************/
    #print-preview-toolbar,
    #printedit-toolbar,
    #titlebar {
      -moz-box-ordinal-group: 0 !important;
    }
    #navigator-toolbox #toolbar-menubar {
      -moz-box-ordinal-group: 1 !important;
    }
    /* navigation toolbar */
    #navigator-toolbox #nav-bar {
      -moz-box-ordinal-group: 2 !important;
    }
    /* bookmarks toolbar */
    #navigator-toolbox #PersonalToolbar {
      -moz-box-ordinal-group: 3 !important;
    }
    /* 3rd party toolbars */
    #navigator-toolbox toolbar {
      -moz-box-ordinal-group: 10 !important;
    }
    /* tabs toolbar */
    #navigator-toolbox #TabsToolbar {
      -moz-box-ordinal-group: 100 !important;
    }
    /* toolbar order (end) **************************************/
    
    
    /* toolbar colors */
    #main-window:not([tabsintitlebar]) #toolbar-menubar:not(:-moz-lwtheme) {
      background-image: var(--colored_menubar_background_image) !important;
      border: 0px !important;
      margin-bottom: -1px !important;
    }
    
    
    #nav-bar:not(:-moz-lwtheme) {
      -moz-appearance: none !important;
      background: var(--general_toolbar_color_navbar, inherit) !important;
    }
    
    
    toolbar:not(#TabsToolbar):not(#toolbar-menubar):not(#nav-bar):not(:-moz-lwtheme) {
      -moz-appearance: none !important;
      background: var(--general_toolbar_color_toolbars, inherit) !important;
    }
    #TabsToolbar:not(:-moz-lwtheme){
      -moz-appearance: none !important;
      background-image: var(--tabs_toolbar_color_tabs_not_on_top) !important;
    }
    
    
    /* remove color overlay for lw-themes */
    #main-window[style*='--lwt-header-image'] :-moz-any(#nav-bar,#PersonalToolbar,#TabsToolbar):-moz-lwtheme{
      background: unset !important;
    }
    
    
    /* adjust compact themes background color */
    #main-window:not([style*='--lwt-header-image']) #TabsToolbar:-moz-lwtheme {
      -moz-appearance: none !important;
      background-image: linear-gradient(var(--toolbar-bgcolor),var(--toolbar-bgcolor)) !important;
    }
    
    
    #main-window:not(:-moz-lwtheme) #TabsToolbar :-moz-any(.tabs-newtab-button,.scrollbutton-up,.scrollbutton-down),
    #main-window:not(:-moz-lwtheme) #TabsToolbar > toolbarbutton,
    #main-window:not([style*='--lwt-header-image']):-moz-lwtheme:-moz-lwtheme-darktext #TabsToolbar :-moz-any(.tabs-newtab-button,.scrollbutton-up,.scrollbutton-down),
    #main-window:not([style*='--lwt-header-image']):-moz-lwtheme:-moz-lwtheme-darktext #TabsToolbar > toolbarbutton {
      fill: var(--classic_squared_tabs_new_tab_icon_color) !important;
      color: var(--classic_squared_tabs_new_tab_icon_color) !important;
    }
    
    
    /* toolbar borders */
    #main-window #navigator-toolbox::after {
      opacity: 0 !important;
    }
    
    
    #TabsToolbar{
      margin-bottom: 0px !important;
      border-bottom: 1px solid #5f7181 !important;
    }
    
    
    #main-window[sizemode="normal"] #navigator-toolbox :-moz-any(#nav-bar,#PersonalToolbar,#TabsToolbar) {
      border-left: var(--tabs_toolbar_border-tnot_normal_mode_size) solid var(--tabs_toolbar_border-tnot_normal_mode) !important;
      border-right: var(--tabs_toolbar_border-tnot_normal_mode_size) solid var(--tabs_toolbar_border-tnot_normal_mode) !important;
      background-clip: padding-box !important;
    }
    
    
    #main-window[sizemode="maximized"] #navigator-toolbox :-moz-any(#nav-bar,#PersonalToolbar,#TabsToolbar) {
      border-left: 0px !important;
      border-right: 0px !important;
    }
    
    
    #main-window[style*='--lwt-header-image'][sizemode="normal"] #navigator-toolbox :-moz-any(#nav-bar,#PersonalToolbar,#TabsToolbar):-moz-lwtheme,
    #main-window[style*='--lwt-header-image'][sizemode="maximized"] #navigator-toolbox :-moz-any(#nav-bar,#PersonalToolbar,#TabsToolbar):-moz-lwtheme {
      border-top: 0px !important;
      border-left: 0px !important;
      border-right: 0px !important;
    }
    
    
    #main-window:not([style*='--lwt-header-image']):-moz-lwtheme-brighttext #TabsToolbar:-moz-lwtheme {
      border-bottom: 1px solid #323234 !important;
    }
    
    
    #main-window:not([style*='--lwt-header-image']):-moz-lwtheme:-moz-lwtheme-brighttext #TabsToolbar:-moz-lwtheme {
      border-bottom: 1px solid #323234 !important;
    }
    
    
    #main-window:not([sizemode="fullscreen"])[tabsintitlebar] #TabsToolbar{
      -moz-margin-end: 0px !important;
    }
    
    
    #main-window[tabsintitlebar] #TabsToolbar .titlebar-placeholder{
      visibility: collapse !important;
    }
    
    
    #main-window[tabsintitlebar][sizemode="normal"] #toolbar-menubar[autohide="true"][inactive="true"] {
      margin-top: 21px !important;
    }
    #main-window[tabsintitlebar][sizemode="maximized"] #toolbar-menubar[autohide="true"][inactive="true"] {
      margin-top: 20px !important;
    }
    
    
    #tabbrowser-tabs .tab-drop-indicator {
      margin-bottom: 0px !important;
    }
    
    
    #PersonalToolbar:-moz-lwtheme,
    #nav-bar:-moz-lwtheme {
      background-image: none !important;
      box-shadow: none !important;
      border-top: none !important;
      border-bottom: none !important;
    }
    
    
    /* remove tab fog */
    #TabsToolbar:not(:-moz-lwtheme),
    #TabsToolbar:not(:-moz-lwtheme)::before,
    #TabsToolbar:not(:-moz-lwtheme)::after {
      box-shadow: unset !important;
    }
    
    
    /* remove 'dragging tab' margin/padding nonsense */
    #TabsToolbar[movingtab] {
      padding-bottom: unset !important;
    }
    
    
    #TabsToolbar[movingtab] > .tabbrowser-tabs {
      padding-bottom: unset !important;
      margin-bottom: unset !important;
    }
    
    
    #TabsToolbar[movingtab] + #nav-bar {
      margin-top: unset !important;
    }
    
    
    /* scroll buttons */
    #TabsToolbar:not(:-moz-lwtheme) #alltabs-button,
    #TabsToolbar:not(:-moz-lwtheme) .tabbrowser-arrowscrollbox > .scrollbutton-up,
    #TabsToolbar:not(:-moz-lwtheme) .tabbrowser-arrowscrollbox > .scrollbutton-down {
      fill: black !important;
    }
    
    
    /* Fx58+ titlebar placeholders */
    #TabsToolbar *[type="pre-tabs"],
    #TabsToolbar *[type="post-tabs"] {
      display: none !important;
    }
    
    
    @media (-moz-os-version: windows-win10) {
    	#main-window[tabsintitlebar][sizemode="normal"] #toolbar-menubar[autohide="true"][inactive="true"] {
    	  margin-top: 30px !important;
    	}
    	#main-window[tabsintitlebar][sizemode="maximized"] #toolbar-menubar[autohide="true"][inactive="true"] {
    	  margin-top: 30px !important;
    	}
    }
    
    
    @media (-moz-windows-classic) {
    
    
    	/* tweaks for Windows Classic theme */
    	#nav-bar:not(:-moz-lwtheme),
    	#PersonalToolbar:not(:-moz-lwtheme),
    	#main-window:not([tabsintitlebar])  #TabsToolbar:not(:-moz-lwtheme) {
    	  border-left: unset !important;
    	  border-right: unset !important;
    	  background: unset !important;
    	}
    
    
    	#main-window[sizemode="normal"] #navigator-toolbox :-moz-any(#nav-bar,#PersonalToolbar,#TabsToolbar) {
    	  border-left: 0px !important;
    	  border-right: 0px !important;
    	}
    
    
    	#main-window:not([tabsintitlebar]) #toolbar-menubar:not(:-moz-lwtheme) {
    	  background: unset !important;
    	  box-shadow: unset !important;
    	  border-bottom: unset !important;
    	}
    
    
    	#main-window:not([tabsintitlebar]):not(:-moz-lwtheme) #navigator-toolbox,
    	#main-window:not([tabsintitlebar]):not(:-moz-lwtheme) #nav-bar,
    	#main-window:not([tabsintitlebar]):not(:-moz-lwtheme) #navigator-toolbox::before,
    	#main-window:not([tabsintitlebar]):not(:-moz-lwtheme) #nav-bar::before,
    	#main-window:not([tabsintitlebar]):not(:-moz-lwtheme) #navigator-toolbox::after,
    	#main-window:not([tabsintitlebar]):not(:-moz-lwtheme) #nav-bar::after {
    	  background: unset !important;
    	  box-shadow: unset !important;
    	  border: unset !important;
    	  border-image: unset !important;
    	}
    
    
    	#main-window:not([tabsintitlebar]) toolbar:not(#TabsToolbar):not(#toolbar-menubar):not(#nav-bar):not(:-moz-lwtheme) {
    	  background: unset !important;
    	}
    
    
    }
    
    
    /* tab text colors */
    #TabsToolbar:not(:-moz-lwtheme) .tabbrowser-tab {
      color: var(--classic_squared_tabs_tab_text_color) !important;
      text-shadow: 1px 1px 1px var(--classic_squared_tabs_tab_text_shadow) !important;
    }
    
    
    /* fix Windows 7s default tab background (remove dark purple bg color)*/
    @media (-moz-os-version: windows-win7) {
      @media (-moz-windows-default-theme) {
        .tabbrowser-tab:not([selected]):not(:hover):not(:-moz-lwtheme) {
          background-color: #e3e4e6 !important;
        }
    	.tabbrowser-tab:not([selected]):hover:not(:-moz-lwtheme) {
          background-color: #cccdcf !important;
        }
    
    
      }
    }
    
    
    /* Simple Close Tab button */
    #TabsToolbar:not(:-moz-lwtheme) #_fe8cab45-aaee-45f8-8765-781e0ebea300_-browser-action {
      --webextension-toolbar-image-light: url("moz-extension://7904448c-2319-4f6f-aac9-a1f701258098/icons/Close-dark.svg") !important;
    }
    
    
    /* close tab button */
    #TabsToolbar:not(:-moz-lwtheme) #closetab_fmarin_com-browser-action {
      --webextension-toolbar-image-light: url("moz-extension://31006e48-8e00-476f-8ea9-697e40934b02/icons/icon.svg") !important;
      --webextension-toolbar-image-2x-light: url("moz-extension://31006e48-8e00-476f-8ea9-697e40934b02/icons/icon.svg") !important;
    }
    
    
    /* close window button */
    #TabsToolbar:not(:-moz-lwtheme) #close-window-button_nanpuyue_com-browser-action {
      --webextension-toolbar-image-light: url("moz-extension://c914bd13-793f-4a2d-ab66-c655a3d75c52/icons/icon.svg") !important;
      --webextension-toolbar-image-2x-light: url("moz-extension://c914bd13-793f-4a2d-ab66-c655a3d75c52/icons/icon.svg") !important;
    }
    Alles anzeigen

    Achte genau auf die Schreibweisen der Fett hervorgehoben Datei- und Ordnernamen. Nun Firefox starten und die Leiste sollte wieder unten sein.

  • Firefox löscht Cookies nicht komplett

    • AngelOfDarkness
    • 30. Januar 2019 um 04:34

    Bei der Lautstärke dürfte es sich wohl um Website-Daten handeln, sieh dazu mal: https://support.mozilla.org/de/kb/webseite…ten-dateien-auf

  • Installation von Erweiterungen

    • AngelOfDarkness
    • 29. Januar 2019 um 23:29

    madperson

    Zu früh...damit wird erstmal nur das Symptom behoben, aber nicht die eigentliche Ursache. ;)

  • Installation von Erweiterungen

    • AngelOfDarkness
    • 29. Januar 2019 um 22:46

    Bitte mach mal einen Scan mit dem AdwCleaner und poste hier das Ergebnis im vollständigen Editor zwischen den Code-Klammern </> des vollständigen Editors, anstatt den Fundbericht wie in der Anleitung hochzuladen (Schritt 3) : Mit AdwCleaner nach Problemen suchen
    Ich denke bei dir wird sich Malware eingenistet haben.

    Zudem nutzt du unnötigerweise Bitdefender unter Windows 10.Unter Windows 10 wird keine Drittanbietersoftware für Sicherheit benötigt.

    Nach dem Scan mit dem m AdwCleaner sehen wir weiter. Zumindest must du mal Software von Abelsoft installiert gehabt haben. Aus dem gemachten Scan, ergeben sich dann die weiteren Schritte.

  • Firefox verlangsamt Computer

    • AngelOfDarkness
    • 29. Januar 2019 um 22:34

    OT//

    Aber der normale User hat ab Windows Pro Versionen von Haus aus diese Möglichkeit mit BitLocker: https://support.microsoft.com/de-de/help/402…vice-encryption

  • Bilder inline anzeigen

    • AngelOfDarkness
    • 27. Januar 2019 um 18:53

    Hast du mal einen Link dazu?

  • Entwicklung Firefox

    • AngelOfDarkness
    • 27. Januar 2019 um 17:15

    Interessante Sache, bin mal dem Testprogramm beigetreten. Schade das aber leider (bisher) keine Lesezeichen gesynct werden. Bisher nur history. Wir der Name Fennec denn momentan zweigleisig genutzt, also sowohl für Firefox als auch den Reference Browser?

    Code
    Allgemeine Informationen
    ------------------------
    
    
    Name: Fennec
    Version: 66.0a1
    Build-ID: 20190124104034
    Update-Kanal: nightly
    User-Agent: Mozilla/5.0 (Android 8.1.0; Mobile; rv:66.0) Gecko/66.0 Firefox/66.0
    Betriebssystem: Linux 27
    Fenster mit mehreren Prozessen: 0/0 deaktiviert
    Web-Inhaltsprozesse:
    Unternehmensrichtlinien:
    Google-Schlüssel: Gefunden
    Mozilla-Location-Service-Schlüssel: Gefunden
    Abgesicherter Modus: false
    
    
    Absturzberichte der letzten 3 Tage
    ----------------------------------
    
    
    Alle Absturzberichte    Nightly-Funktionen
    ------------------------------------------
    
    
    Erweiterungen
    -------------
    
    
    Sicherheitssoftware
    ------------------- Typ:
    
    
    Typ:
    
    
    Typ:
    
    
    Grafik
    ------
    
    
    Allgemeine Merkmale
    Compositing: OpenGL
    asyncPanZoom: Berührungs-Eingabe aktiviert; automatischer Bildlauf aktiviert
    webgl1WSIInfo: EGL_VENDOR: Android EGL_VERSION: 1.4 Android META-EGL EGL_EXTENSIONS: EGL_KHR_get_all_proc_addresses EGL_ANDROID_presentation_time EGL_KHR_swap_buffers_with_damage EGL_ANDROID_get_native_client_buffer EGL_ANDROID_front_buffer_auto_refresh EGL_ANDROID_get_frame_timestamps EGL_KHR_image EGL_KHR_image_base EGL_KHR_gl_colorspace EGL_KHR_gl_texture_2D_image EGL_KHR_gl_texture_cubemap_image EGL_KHR_gl_renderbuffer_image EGL_KHR_fence_sync EGL_KHR_create_context EGL_KHR_config_attribs EGL_KHR_surfaceless_context EGL_EXT_create_context_robustness EGL_ANDROID_image_native_buffer EGL_KHR_wait_sync EGL_ANDROID_recordable EGL_KHR_partial_update EGL_KHR_mutable_render_buffer EGL_IMG_context_priority EGL_KHR_no_config_context
    WebGL-1-Treiber: Renderer: ARM -- Mali-T830
    WebGL-1-Treiber: Version: OpenGL ES 3.2 v1.r22p0-01rel0.9ec4ae29cda192f74d35a11091de4ace
    WebGL-1-Treiber: Erweiterungen: GL_EXT_debug_marker GL_ARM_rgba8 GL_ARM_mali_shader_binary GL_OES_depth24 GL_OES_depth_texture GL_OES_depth_texture_cube_map GL_OES_packed_depth_stencil GL_OES_rgb8_rgba8 GL_EXT_read_format_bgra GL_OES_compressed_paletted_texture GL_OES_compressed_ETC1_RGB8_texture GL_OES_standard_derivatives GL_OES_EGL_image GL_OES_EGL_image_external GL_OES_EGL_image_external_essl3 GL_OES_EGL_sync GL_OES_texture_npot GL_OES_vertex_half_float GL_OES_required_internalformat GL_OES_vertex_array_object GL_OES_mapbuffer GL_EXT_texture_format_BGRA8888 GL_EXT_texture_rg GL_EXT_texture_type_2_10_10_10_REV GL_OES_fbo_render_mipmap GL_OES_element_index_uint GL_EXT_shadow_samplers GL_OES_texture_compression_astc GL_KHR_texture_compression_astc_ldr GL_KHR_texture_compression_astc_hdr GL_KHR_texture_compression_astc_sliced_3d GL_KHR_debug GL_EXT_occlusion_query_boolean GL_EXT_disjoint_timer_query GL_EXT_blend_minmax GL_EXT_discard_framebuffer GL_OES_get_program_binary GL_OES_texture_3D GL_EXT_texture_storage GL_EXT_multisampled_render_to_texture GL_OES_surfaceless_context GL_OES_texture_stencil8 GL_EXT_shader_pixel_local_storage GL_ARM_shader_framebuffer_fetch GL_ARM_shader_framebuffer_fetch_depth_stencil GL_ARM_mali_program_binary GL_EXT_sRGB GL_EXT_sRGB_write_control GL_EXT_texture_sRGB_decode GL_EXT_texture_sRGB_R8 GL_EXT_texture_sRGB_RG8 GL_KHR_blend_equation_advanced GL_KHR_blend_equation_advanced_coherent GL_OES_texture_storage_multisample_2d_array GL_OES_shader_image_atomic GL_EXT_robustness GL_EXT_draw_buffers_indexed GL_OES_draw_buffers_indexed GL_EXT_texture_border_clamp GL_OES_texture_border_clamp GL_EXT_texture_cube_map_array GL_OES_texture_cube_map_array GL_OES_sample_variables GL_OES_sample_shading GL_OES_shader_multisample_interpolation GL_EXT_shader_io_blocks GL_OES_shader_io_blocks GL_EXT_tessellation_shader GL_OES_tessellation_shader GL_EXT_primitive_bounding_box GL_OES_primitive_bounding_box GL_EXT_geometry_shader GL_OES_geometry_shader GL_ANDROID_extension_pack_es31a GL_EXT_gpu_shader5 GL_OES_gpu_shader5 GL_EXT_texture_buffer GL_OES_texture_buffer GL_EXT_copy_image GL_OES_copy_image GL_EXT_shader_non_constant_global_initializers GL_EXT_color_buffer_half_float GL_EXT_color_buffer_float GL_EXT_YUV_target GL_OVR_multiview GL_OVR_multiview2 GL_OVR_multiview_multisampled_render_to_texture GL_KHR_robustness GL_KHR_robust_buffer_access_behavior GL_EXT_draw_elements_base_vertex GL_OES_draw_elements_base_vertex GL_EXT_protected_textures GL_EXT_buffer_storage
    WebGL-1-Erweiterungen: ANGLE_instanced_arrays EXT_blend_minmax EXT_color_buffer_half_float EXT_frag_depth EXT_sRGB EXT_disjoint_timer_query OES_element_index_uint OES_standard_derivatives OES_texture_float OES_texture_float_linear OES_texture_half_float OES_texture_half_float_linear OES_vertex_array_object WEBGL_color_buffer_float WEBGL_compressed_texture_astc WEBGL_compressed_texture_etc WEBGL_compressed_texture_etc1 WEBGL_debug_renderer_info WEBGL_debug_shaders WEBGL_depth_texture WEBGL_draw_buffers WEBGL_lose_context
    WebGL-2-Treiber: WSI Info: EGL_VENDOR: Android EGL_VERSION: 1.4 Android META-EGL EGL_EXTENSIONS: EGL_KHR_get_all_proc_addresses EGL_ANDROID_presentation_time EGL_KHR_swap_buffers_with_damage EGL_ANDROID_get_native_client_buffer EGL_ANDROID_front_buffer_auto_refresh EGL_ANDROID_get_frame_timestamps EGL_KHR_image EGL_KHR_image_base EGL_KHR_gl_colorspace EGL_KHR_gl_texture_2D_image EGL_KHR_gl_texture_cubemap_image EGL_KHR_gl_renderbuffer_image EGL_KHR_fence_sync EGL_KHR_create_context EGL_KHR_config_attribs EGL_KHR_surfaceless_context EGL_EXT_create_context_robustness EGL_ANDROID_image_native_buffer EGL_KHR_wait_sync EGL_ANDROID_recordable EGL_KHR_partial_update EGL_KHR_mutable_render_buffer EGL_IMG_context_priority EGL_KHR_no_config_context
    WebGL-2-Treiber: Renderer: ARM -- Mali-T830
    WebGL-2-Treiber: Version: OpenGL ES 3.2 v1.r22p0-01rel0.9ec4ae29cda192f74d35a11091de4ace
    WebGL-2-Treiber: Erweiterungen: GL_EXT_debug_marker GL_ARM_rgba8 GL_ARM_mali_shader_binary GL_OES_depth24 GL_OES_depth_texture GL_OES_depth_texture_cube_map GL_OES_packed_depth_stencil GL_OES_rgb8_rgba8 GL_EXT_read_format_bgra GL_OES_compressed_paletted_texture GL_OES_compressed_ETC1_RGB8_texture GL_OES_standard_derivatives GL_OES_EGL_image GL_OES_EGL_image_external GL_OES_EGL_image_external_essl3 GL_OES_EGL_sync GL_OES_texture_npot GL_OES_vertex_half_float GL_OES_required_internalformat GL_OES_vertex_array_object GL_OES_mapbuffer GL_EXT_texture_format_BGRA8888 GL_EXT_texture_rg GL_EXT_texture_type_2_10_10_10_REV GL_OES_fbo_render_mipmap GL_OES_element_index_uint GL_EXT_shadow_samplers GL_OES_texture_compression_astc GL_KHR_texture_compression_astc_ldr GL_KHR_texture_compression_astc_hdr GL_KHR_texture_compression_astc_sliced_3d GL_KHR_debug GL_EXT_occlusion_query_boolean GL_EXT_disjoint_timer_query GL_EXT_blend_minmax GL_EXT_discard_framebuffer GL_OES_get_program_binary GL_OES_texture_3D GL_EXT_texture_storage GL_EXT_multisampled_render_to_texture GL_OES_surfaceless_context GL_OES_texture_stencil8 GL_EXT_shader_pixel_local_storage GL_ARM_shader_framebuffer_fetch GL_ARM_shader_framebuffer_fetch_depth_stencil GL_ARM_mali_program_binary GL_EXT_sRGB GL_EXT_sRGB_write_control GL_EXT_texture_sRGB_decode GL_EXT_texture_sRGB_R8 GL_EXT_texture_sRGB_RG8 GL_KHR_blend_equation_advanced GL_KHR_blend_equation_advanced_coherent GL_OES_texture_storage_multisample_2d_array GL_OES_shader_image_atomic GL_EXT_robustness GL_EXT_draw_buffers_indexed GL_OES_draw_buffers_indexed GL_EXT_texture_border_clamp GL_OES_texture_border_clamp GL_EXT_texture_cube_map_array GL_OES_texture_cube_map_array GL_OES_sample_variables GL_OES_sample_shading GL_OES_shader_multisample_interpolation GL_EXT_shader_io_blocks GL_OES_shader_io_blocks GL_EXT_tessellation_shader GL_OES_tessellation_shader GL_EXT_primitive_bounding_box GL_OES_primitive_bounding_box GL_EXT_geometry_shader GL_OES_geometry_shader GL_ANDROID_extension_pack_es31a GL_EXT_gpu_shader5 GL_OES_gpu_shader5 GL_EXT_texture_buffer GL_OES_texture_buffer GL_EXT_copy_image GL_OES_copy_image GL_EXT_shader_non_constant_global_initializers GL_EXT_color_buffer_half_float GL_EXT_color_buffer_float GL_EXT_YUV_target GL_OVR_multiview GL_OVR_multiview2 GL_OVR_multiview_multisampled_render_to_texture GL_KHR_robustness GL_KHR_robust_buffer_access_behavior GL_EXT_draw_elements_base_vertex GL_OES_draw_elements_base_vertex GL_EXT_protected_textures GL_EXT_buffer_storage
    WebGL-2-Erweiterungen: EXT_color_buffer_float EXT_disjoint_timer_query OES_texture_float_linear WEBGL_compressed_texture_astc WEBGL_compressed_texture_etc WEBGL_compressed_texture_etc1 WEBGL_debug_renderer_info WEBGL_debug_shaders WEBGL_lose_context
    Verwendet Kacheln: true
    Verwendent Kacheln für Inhalt: true
    Target Frame Rate: 60
    GPU 1
    Aktiv: Ja
    Beschreibung: Model: SM-T580, Product: gtaxlwifixx, Manufacturer: samsung, Hardware: samsungexynos7870, OpenGL: ARM -- Mali-T830 -- OpenGL ES 3.2 v1.r22p0-01rel0.9ec4ae29cda192f74d35a11091de4ace
    Herstellerkennung: ARM
    Gerätekennung: Mali-T830
    Treiber-Version: OpenGL ES 3.2 v1.r22p0-01rel0.9ec4ae29cda192f74d35a11091de4ace
    
    
    Weitere Informationen
    AzureCanvasAccelerated: 0
    AzureCanvasBackend: skia
    AzureContentBackend: skia
    AzureFallbackCanvasBackend: none
    TileHeight: 512
    TileWidth: 512
    Device Reset: Gerät zurücksetzen
    Entscheidungsprotokoll
    HW_COMPOSITING:
    force_enabled by user: Force-enabled by pref
    OPENGL_COMPOSITING:
    force_enabled by user: Force-enabled by pref
    WEBRENDER:
    opt-in by default: WebRender is an opt-in feature
    WEBRENDER_QUALIFIED:
    blocked by env: Has battery
    OMTP:
    disabled by default: Disabled by default
    
    
    
    
    
    
    
    
    Medien
    ------
    
    
    Audio-Backend: opensl
    Max. Kanäle: 2
    Bevorzugte Sample-Rate: 48000
    Ausgabegeräte
    Name: Gruppe
    Eingabegeräte
    Name: Gruppe
    
    
    Wichtige modifizierte Einstellungen
    -----------------------------------
    
    
    browser.cache.disk.capacity: 524288
    browser.cache.disk.filesystem_reported: 1
    browser.cache.disk.smart_size.first_run: false
    extensions.lastAppVersion: 66.0a1
    general.useragent.updates.lastupdated: 1548605009842
    media.gmp.storage.version.observed: 1
    network.predictor.cleaned-up: true
    
    
    Wichtige nicht veränderbare Einstellungen
    -----------------------------------------
    
    
    JavaScript
    ----------
    
    
    Inkrementelle GC: true
    
    
    Barrierefreiheit
    ----------------
    
    
    Aktiviert: true
    Barrierefreiheit verhindern: 0
    
    
    Bibliotheken-Versionen
    ----------------------
    
    
    NSPR
    Minimal vorausgesetzte Version: 4.20
    Verwendete Version: 4.20
    
    
    NSS
    Minimal vorausgesetzte Version: 3.42 Beta
    Verwendete Version: 3.42 Beta
    
    
    NSSSMIME
    Minimal vorausgesetzte Version: 3.42 Beta
    Verwendete Version: 3.42 Beta
    
    
    NSSSSL
    Minimal vorausgesetzte Version: 3.42 Beta
    Verwendete Version: 3.42 Beta
    
    
    NSSUTIL
    Minimal vorausgesetzte Version: 3.42 Beta
    Verwendete Version: 3.42 Beta
    
    
    Internationalisierung & Lokalisierung
    -------------------------------------
    
    
    Anwendungseinstellungen
    Angeforderte Sprachen: ["de-DE"]
    Verfügbare Sprachen: ["an","ar","as","ast","az","be","bg","bn-BD","bn-IN","br","bs","ca","cak","cs","cy","da","de","dsb","el","en-CA","en-GB","en-US","en-ZA","eo","es-AR","es-CL","es-ES","es-MX","et","eu","fa","ff","fi","fr","fy-NL","ga-IE","gd","gl","gn","gu-IN","he","hi-IN","hr","hsb","hu","hy-AM","id","is","it","ja","ka","kab","kk","kn","ko","lij","lo","lt","lv","mai","ml","mr","ms","my","nb-NO","ne-NP","nl","nn-NO","oc","or","pa-IN","pl","pt-BR","pt-PT","rm","ro","ru","sk","sl","son","sq","sr","sv-SE","ta","te","th","tr","trs","uk","ur","uz","vi","wo","xh","zam","zh-CN","zh-TW"]
    Anwendungssprachen: ["de","en-US"]
    Region-Einstellungen: ["de-DE"]
    Standardsprache: "en-US"
    Betriebssystem
    Sprachen des Betriebssystems: ["de-DE"]
    Region-Einstellungen: ["de-DE"]
    Alles anzeigen
  • FF Absturz nach StandBy

    • AngelOfDarkness
    • 26. Januar 2019 um 15:18

    Wie verhält sich denn der normale Firefox aus dem normalen Main-Release Channel zusammen mit einem neuen Profil?
    Mache bitte auch mal einen Scan mit dem AdwCleaner und poste hier das Ergebnis im vollständigen Editor zwischen den Code-Klammern </> des vollständigen Editors, anstatt den Fundbericht wie in der Anleitung hochzuladen (Schritt 3) : Mit AdwCleaner nach Problemen suchen
    Gerade der PDF24 Krimskrams bringt auch gerne mal Malware mit.

  • Schokolade

    • AngelOfDarkness
    • 26. Januar 2019 um 13:19

    Also ich habe es ein paar mal versucht zu verschrieben Zeiten und mit verschiedenen Firefox Version und Fennec und zu keiner Zeit irgendwelche Probleme gehabt, so ja auch mangray nicht. Der TE jedoch schon. Auch bei folgendem Thread kommt die Meldung vom Server, aber ursächlich ist wohl Adblock Plus bzw. eine Filterliste beteiligt: https://www.camp-firefox.de/forum/viewtopic.php?f=1&t=127066

  • FF Absturz nach StandBy

    • AngelOfDarkness
    • 26. Januar 2019 um 12:49

    Dann liefere bitte mal ein Crash Report, am besten mindestens drei vom Firefox 65 und nicht von einer alten Beta Version (63.0b14). Desweiteren, da dein Grafikkartentreiber in die Meldung involviert ist, versuche es mal mit einem aktuellen Treiber für die Grafikkarte: https://www.amd.com/en/support/kb/…-rad-win-19-1-2

  • Schokolade

    • AngelOfDarkness
    • 26. Januar 2019 um 12:35

    Ich habe gerade keine Probleme mit der Seite.
    Probiere es bitte mal im abgesicherten Modus des Firefox aus :

    ● Firefox in den "Abgesicherten Modus" starten... ➜ http://mozhelp.dynvpn.de/guide/firefox-…n-modus-starten
    Dieser Test dient ausschließlich der Fehlersuche und stellt somit *keine* Lösung dar, hilft uns aber das Problem besser lokalisieren zu können.

  • Firefox von beta auf normal wechseln

    • AngelOfDarkness
    • 25. Januar 2019 um 22:24

    Gerne, schön dass alles geklappt hat und danke für die Rückmeldung :klasse:

  • Videos ohne Ton

    • AngelOfDarkness
    • 24. Januar 2019 um 11:51

    Deinstalliere mal für einen korrekten Test McAfee genau nach Herstellerangaben und mit deren Tool:https://service.mcafee.com/webcenter/port…3D18gpud7hwv_70

    Ein reines deaktivieren bringt zumeist nix. Denn das könnte denn ja Malware auch einfach machen.

  • Taps stürzen ständig ab

    • AngelOfDarkness
    • 23. Januar 2019 um 22:20

    Bitte mal, wenn möglich auf Beitrag #5 eingehen.

  • Taps stürzen ständig ab

    • AngelOfDarkness
    • 23. Januar 2019 um 19:37

    Gib uns mal bitte Infos zu deinem Firefox

    --> Hilfe --> Informationen zur Fehlerbehebung .. dann den Text in die Zwischenablage kopieren und hier mittels der Code-Klammern </> (im vollständigen Editor) posten. (siehe dazu)

    In den einem Crash-Report ist wohl ein ATI Grafikkartentreiber involviert (unter Modules).

    edit: habe gerade schon gesehen, dass es wohl leider keinen neueren (2013) Grafikkartentreiber für deine Karte gibt.

Unterstütze uns!

Jährlich (2025)

101,9 %

101,9% (662,48 von 650 EUR)

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