Sören, danke für deine Rückinfo
Beiträge von Der Feuerfuchs
-
-
Hallo 2002Andreas,
absolut perfekt :klasse: Ich danke dir
-
Hallo liebe Forenkollegen,
wenn ich hier im Forum "Foren als gelesen markiere" erscheint das entsprechende Popup Fenster zur Bestätigung.
Ist nicht weiter tragisch, weil es ja nach ein paar Sekunden verschwindet, aber kann man die auch ev. unterdrücken ?Gruß der Feuerfuchs
-
@ sidesurfer,
ich kann z.B. http://www.cisco.com/de entsprechend mit dem unterschiedlichen Inhalten aufrufen.
Da war schon seit ewigen Zeiten so, und nun auch im FF 66. -
In einer Testumgebung läuft dieser Script (7 Jahre alt) bei mir unter FF 66 auch nicht mehr.
Wozu willst du überhaupt diesen Button ? Mit dem X-Button ganz oben rechts schließt du ebenfalls den Browser. -
Probiere es mal mit diesem Script:
CSS
Alles anzeigen// Restore 'Space & Separator' items script for Firefox 60+ by Aris // // Default browser scripts always remove spaces and separators from default palette, so // because of that they are added to an own toolbar now. // // - spaces and separators can be moved to any toolbar // - to remove spaces or separators move them into palette // - configuration toolbar behaves like a default toolbar, items and buttons can be placed on it // - configuration toolbar is not visible outside customizing mode // - default "Flexible Space" item is hidden from palette and added to configuration toolbar // [!] BUG: do not move spaces, flexible spaces or separator to configuration toolbar or it will cause glitches // [!] BUG: do not move 'main space' item to palette or it will get lost until next time customizing mode gets opened Components.utils.import("resource:///modules/CustomizableUI.jsm"); var {Services} = Components.utils.import("resource://gre/modules/Services.jsm", {}); var appversion = parseInt(Services.appinfo.version); var AddSeparator = { init: function() { var tb_config_label = "Configuration Toolbar"; var tb_spacer_label = "Space"; var tb_sep_label = "Separator"; var tb_spring_label = "Flexible Space"; try { if(appversion <= 62) var tb_config = document.createElement("toolbar"); else var tb_config = document.createXULElement("toolbar"); tb_config.setAttribute("id","configuration_toolbar"); tb_config.setAttribute("customizable","true"); tb_config.setAttribute("class","toolbar-primary chromeclass-toolbar browser-toolbar customization-target"); tb_config.setAttribute("mode","icons"); tb_config.setAttribute("iconsize","small"); tb_config.setAttribute("toolboxid","navigator-toolbox"); tb_config.setAttribute("lockiconsize","true"); tb_config.setAttribute("ordinal","1005"); tb_config.setAttribute("defaultset","toolbarspacer,toolbarseparator"); document.querySelector('#navigator-toolbox').appendChild(tb_config); CustomizableUI.registerArea("configuration_toolbar", {legacy: true}); if(appversion >= 65) CustomizableUI.registerToolbarNode(tb_config); if(appversion <= 62) var tb_label = document.createElement("label"); else var tb_label = document.createXULElement("label"); tb_label.setAttribute("label", tb_config_label+": "); tb_label.setAttribute("value", tb_config_label+": "); tb_label.setAttribute("id","tb_config_tb_label"); tb_label.setAttribute("removable","false"); tb_config.appendChild(tb_label); if(appversion <= 62) var tb_spacer = document.createElement("toolbarspacer"); else var tb_spacer = document.createXULElement("toolbarspacer"); tb_spacer.setAttribute("id","spacer"); tb_spacer.setAttribute("class","chromeclass-toolbar-additional"); tb_spacer.setAttribute("customizableui-areatype","toolbar"); tb_spacer.setAttribute("removable","false"); tb_spacer.setAttribute("label", tb_spacer_label); tb_config.appendChild(tb_spacer); if(appversion <= 62) var tb_sep = document.createElement("toolbarseparator"); else var tb_sep = document.createXULElement("toolbarseparator"); tb_sep.setAttribute("id","separator"); tb_sep.setAttribute("class","chromeclass-toolbar-additional"); tb_sep.setAttribute("customizableui-areatype","toolbar"); tb_sep.setAttribute("removable","false"); tb_sep.setAttribute("label", tb_sep_label); tb_config.appendChild(tb_sep); if(appversion <= 62) var tb_spring = document.createElement("toolbarspring"); else var tb_spring = document.createXULElement("toolbarspring"); tb_spring.setAttribute("id","spring"); tb_spring.setAttribute("class","chromeclass-toolbar-additional"); tb_spring.setAttribute("customizableui-areatype","toolbar"); tb_spring.setAttribute("removable","false"); tb_spring.setAttribute("label", tb_spring_label); tb_config.appendChild(tb_spring); // CSS var sss = Components.classes["@mozilla.org/content/style-sheet-service;1"].getService(Components.interfaces.nsIStyleSheetService); var uri = Services.io.newURI("data:text/css;charset=utf-8," + encodeURIComponent('\ \ #configuration_toolbar { \ -moz-appearance: none !important; \ background-color: var(--toolbar-bgcolor); \ background-image: var(--toolbar-bgimage); \ background-clip: padding-box; \ color: var(--toolbar-color, inherit); \ } \ #main-window:not([customizing]) #configuration_toolbar { \ visibility: collapse; \ }\ #main-window[customizing] #configuration_toolbar #tb_config_tb_label { \ font-weight: bold !important; \ }\ #main-window[customizing] #configuration_toolbar :-moz-any(#spacer,#separator,#spring) { \ -moz-margin-start: 20px; \ }\ #main-window[customizing] #configuration_toolbar :-moz-any(#wrapper-spacer,#wrapper-separator,#wrapper-spring) .toolbarpaletteitem-label { \ display: block !important; \ -moz-margin-end: 20px; \ }\ #main-window[customizing] #wrapper-spacer #spacer { \ margin: 2px 0 !important; \ }\ #main-window[customizing] #configuration_toolbar #wrapper-spring #spring { \ margin: -1px 0 !important; \ min-width: 80px !important; \ }\ #main-window[customizing] #configuration_toolbar > * { \ padding: 10px !important; \ }\ #main-window[customizing] #configuration_toolbar > :-moz-any(#wrapper-spacer,#wrapper-separator,#wrapper-spring) { \ border: 1px dotted !important; \ -moz-margin-start: 2px !important; \ -moz-margin-end: 2px !important; \ }\ #main-window[customizing] toolbarspacer { \ border: 1px solid !important; \ }\ toolbar[orient="vertical"] toolbarseparator { \ -moz-appearance: none !important; \ border-top: 1px solid rgba(15,17,38, 0.5) !important; \ border-bottom: 1px solid rgba(255,255,255, 0.3) !important; \ margin: 2px 2px !important; \ height: 1px !important; \ width: 18px !important; \ }\ toolbar[orient="vertical"] toolbarspacer { \ -moz-appearance: none !important; \ height: 18px !important; \ width: 18px !important; \ }\ #customization-palette toolbarpaletteitem[id^="wrapper-customizableui-special-spring"], \ #customization-palette-container :-moz-any(#spring,#wrapper-spring) { \ display: none !important; \ }\ \ '), null, null); sss.loadAndRegisterSheet(uri, sss.AGENT_SHEET); } catch(e){} } } setTimeout(function(){ AddSeparator.init(); },500);
Diesen als space_and_separator_restorer.js in den Chrome Ordner einfügen.
Funktioniert bei mir auch mit dem FF 66 (Release).
Und dann unter Anpassen entsprechend positionieren. -
Zitat
Umso lieberen Dank für die Hilfe
... aber gern geschehen.
-
Hattest du vielleicht mal das AddOn von Sören Hentschel "Enterprise Policy Generator" installiert ?
Das kommt mir so bekannt vor.[attachment=0]screenshot.2.jpeg[/attachment]
-
Zitat
Zur Not haben wir noch ein Unterforum Smalltalk...
:klasse: -
Hallo 2002Andreas,
Zitatauch wenn es nicht gerade mehr Spaß macht, weil die Leistung eben doch sehr schwach ist.
... man kann (fast) alles, ob es sinnvoll ist sei dahin gestellt. Für mich ist jetzt hier Schluss, da hier ein FF-Forum ist.
-
Hallo AngelOfDarkness,
sorry, aber ein Tablet ist kein PC aus der XP-Ära, und da mag ich bezweifeln das überhaupt eine Installation von Windows 10 mit den relevanten Treibern möglich ist.
Aber wie ich schon im Beitrag # 14 geschrieben habe, hier ist kein Windows Forum, und daher alle Beiträge diesbezüglich nicht richtig platziert. -
Hallo Irmbert,
ich habe jetzt mal die anderen Foren durchstöbert, und habe die Vermutung dass du Windows XP verwendest
Das ist nicht nur in meinen Augen ein No-Go da das BS seit ewigen Zeiten keine Sicherheitsupdates mehr bekommt. Damit stellt du nicht nur dir eine Gefahr im Netz da, sondern auch den anderen Usern ! Sollte dein PC infiziert sein, werden über dein System (wenn online) schwerwiegende Schadsoftware verteilt.
Auch wenn deine finanziellen Mittel begrenzt sind, solltest du dich um eine neuere Hardware bemühen. Und das BS muss ja nicht gleich Windows 10 sein. -
Hallo Irmbert,,
ZitatKann mir da ein aktuelle(re)s Betriebssystem schon helfen
... es ist hier zwar ein Firefox-Forum, aber trotzdem wäre es angebracht uns mal was über deine Hardware und dem jetzigen Betriebssystem zu verraten. dann kann man dir ggf. Ratschläge erteilen und Links zu den entsprechenden Foren geben.
Wiederholte Aussage "uralter Computer" ist relativ und wenig aussagekräftig. -
Hallo Irmbert,
gehe zu den AddOns und installiere TMP über die heruntergeladene Datei
[attachment=2]screenshot.1.jpeg[/attachment]
Dann stellst du unter TMP die Sitzungswiederherstellung ein
[attachment=1]screenshot.2.jpeg[/attachment]
Dann nur noch unter "Anpasse" beide Symbole in die Symbolleiste ziehen
[attachment=0]screenshot.4.jpeg[/attachment]
So läuft es bei mir mit Vista und FF 52.9.0
-
An Alle,
für die tollen Tipps ein dickes Danke von mir :klasse:
Sieht bei mir dann so aus[attachment=0]screenshot.1.jpeg[/attachment]
-
Moin,
probiere es bitte mal mit TabMixPlus 0.5.05pre 171209a1 und der TMP internen Sitzungswiederherstelleung
Download hier:
https://bitbucket.org/onemen/tabmixplus/downloads/