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

Beiträge von Mira_Belle

  • Schriftfarbe Adressleiste

    • Mira_Belle
    • 12. Juli 2024 um 10:23

    Dharkness

    CSS
    	#faviconid {
    		-moz-context-properties: fill !important;
    	}
    	#identity-box  {		
    		fill: white !important;
    	}

    Zitat von FuchsFan

    Ein eigenes Icon anwenden funktioniert, aber wie das Original ausblenden? Alle Versuche bisher erfolglos.:rolleyes:

    Nur ein Versuch!!

    CSS
    #identity-box.chromeUI #faviconid {
       -moz-context-properties: fill !important;
       fill: #ffffff00 !important;
    }
  • Schriftfarbe Adressleiste

    • Mira_Belle
    • 11. Juli 2024 um 22:52

    Dharkness Du nutzt ein Skript für das Anzeigen des Symbols, welches Du ausblenden möchtest?

  • Symbole in den Kontextmenüs [ Update ]

    • Mira_Belle
    • 11. Juli 2024 um 20:13

    PS.

    Für "Kopieren ohne Website-Tracking" habe ich kein passendes Symbol.

    Wenn da jemand eine Idee hätte? Das Kopierensymbol mit einem rotem X ?

  • Symbole in den Kontextmenüs [ Update ]

    • Mira_Belle
    • 11. Juli 2024 um 20:06

    So einfach? Grrr.

    Vielen lieben Dank.


    mkpcxxl Hier das "neue" Skript.

    JavaScript
    // Symbole.uc.js
    
    /* ****************************************************************************************************************** */
    /* Die Entstehung des Symbole.css => https://www.camp-firefox.de/forum/thema/134970/?postID=1205292#post1205292       */
    /* ****************************************************************************************************************** */ 
    /* Das JavaScript                                                                                                     */
    /* https://www.camp-firefox.de/forum/thema/134970/?postID=1216936#post1216936                                         */
    /* version 1.0                                                                                                        */
    /* https://www.camp-firefox.de/forum/thema/134970/?postID=1235046#post1235046                                         */
    /* version 2.0                                                                                                        */
    /* ****************************************************************************************************************** */
    
    (function() {
    //    if (location.href !== 'chrome://browser/content/browser.xhtml') return;
    
        let ProfilePath = PathUtils.toFileURI(PathUtils.join(PathUtils.profileDir, 'chrome', 'icons'));
    
    //    var css =`
    
    let sss = Components.classes["@mozilla.org/content/style-sheet-service;1"].getService(Components.interfaces.nsIStyleSheetService);       
    let uri = Services.io.newURI("data:text/css;charset=utf-8," + encodeURIComponent(`
    
    		/*--------------------------------------------------------------------------*/	
    		/*--------- Texte im Hamburgermenü und in den Submenüs eingerückt ----------*/
    		/*-------------- und in dem Anmeldenbutton das Icon eingefügt --------------*/
    		/*--------------------------------------------------------------------------*/
    
    		.subviewbutton:not(.subviewbutton-iconic, [checked="true"], [targetURI]) > .toolbarbutton-icon {
    			width: 16px;
    			height: 16px;
    			margin-inline-end: 8px !important;
    			-moz-context-properties: fill, fill-opacity;
    			fill: currentColor;
    		}
    
    		#appMenu-fxa-label2::before,
    		#fxa-manage-account-button::after {
    			content: "";
    			display: -moz-box;
    			border-radius: 50%;
    			background: var(--avatar-image-url) no-repeat center/contain;
    			-moz-context-properties: fill;
    			fill: currentColor;
    		}
    
    		#appMenu-fxa-label2::before {
    			width: 16px;
    			height: 16px;
    			margin-inline-end: 8px;
    		}
    
    		/* Neuer Tab */
    		#appMenu-new-tab-button2 { list-style-image: url("${ProfilePath}/tab-open.svg"); }
    		/* Neues Fenster */
    		#appMenu-new-window-button2 { list-style-image: url("${ProfilePath}/session.svg"); }
    		/* Neues privates Fenster */
    		#appMenu-new-private-window-button2 { list-style-image: url("${ProfilePath}/privateBrowsing.svg"); }
    		/* Lesezeichen */
    		#appMenu-bookmarks-button { list-style-image: url("${ProfilePath}/bookmark.svg"); }
    		/* Neues privates Fenster */
    		#appMenu-new-private-window-button2 { list-style-image: url("${ProfilePath}/privateBrowsing.svg"); }
    		/* Lesezeichen */
    		#appMenu-bookmarks-button { list-style-image: url("${ProfilePath}/bookmark.svg"); }
    		/* Chronik */
    		#appMenu-history-button { list-style-image: url("${ProfilePath}/history.svg"); }
    		/* Download */
    		#appMenu-downloads-button { list-style-image: url("${ProfilePath}/downloads.svg"); }
    		/* Passwörter */
    		#appMenu-passwords-button { list-style-image: url("${ProfilePath}/passwords.svg"); }
    		/* Add-ons und Themes */
    		#appMenu-extensions-themes-button { list-style-image: url("${ProfilePath}/addons.svg"); }
    		/* Drucken */
    		#appMenu-print-button2 { list-style-image: url("${ProfilePath}/printer.svg"); }
    		/* Seite speichern unter */
    		#appMenu-save-file-button2 { list-style-image: url("${ProfilePath}/folder-save.svg"); }
    		/* In Seite suchen */
    		#appMenu-find-button2 { list-style-image: url("${ProfilePath}/search.svg"); }
    		/* Seite übersetzen */
    		#appMenu-translate-button { list-style-image: url("${ProfilePath}/translations.svg"); }
    
    		/* Zoom */
    
    		#appMenu-zoom-controls::before {
    			margin-top: 3px !important;
    			margin-right: 10px !important; 
    			margin-left: -1px !important;
    			content: '' !important;
    			display: block !important;
    			width: 16px !important;
    			height: 16px !important;
    			mask-image:  url("${ProfilePath}/screenshot.svg") !important;
    			mask-repeat: no-repeat;
    			mask-position: center;
    			background-color: #e1e1e1 !important;
    		}
    
    		/*Einstellungen */
    		#appMenu-settings-button { list-style-image: url("${ProfilePath}/settings.svg"); }
    		/*Weitere Werkzeuge */
    		#appMenu-more-button2 { list-style-image: url("${ProfilePath}/debugging-workers.svg"); }
    		/* Hilfe */
    		#appMenu-help-button2 { list-style-image: url("${ProfilePath}/help.svg"); }
    		/* Beenden */
    		#appMenu-quit-button2 { list-style-image: url("${ProfilePath}/quit.svg"); }
    
    		/*= Panel - Bookmark =========================================================*/
    	
    		/* Lesezeichen bearbeiten */
    		
    		[data-l10n-id="bookmarks-bookmark-edit-panel"]::before {
    			margin-top: 3px !important;	
    			margin-right: -15px !important;
    			margin-left: -1px !important;
    			content: '' !important;
    			display: block !important;
    			width: 16px !important;
    			height: 16px !important;
    			mask-image: url("${ProfilePath}/window.svg") !important;
    			mask-repeat: no-repeat;
    			mask-position: center;
    			background-color: #e1e1e1 !important;
    		}
    
    		/* Aktuellen Tab als Lesezeichen ... */
    
    		[data-l10n-id="bookmarks-current-tab"]::before {
    			margin-top: 3px !important;	
    			margin-right: -15px !important;
    			margin-left: -1px !important;
    			content: '' !important;
    			display: block !important;
    			width: 16px !important;
    			height: 16px !important;
    			mask-image: url("${ProfilePath}/session.svg") !important;
    			mask-repeat: no-repeat;
    			mask-position: center;
    			background-color: #e1e1e1 !important;
    		}
    
    		/* Dieses Lesezeichen bearbeiten...  */
    		#panelMenuBookmarkThisPage { list-style-image: url("${ProfilePath}/bookmark-hollow.svg"); }
    		/* Lesezeichen durchsuchen */
    		#panelMenu_searchBookmarks { list-style-image: url("${ProfilePath}/search.svg"); }
    		/* Lesezeichen-Symbolleiste ausblenden */
    		#panelMenu_viewBookmarksToolbar { list-style-image: url("${ProfilePath}/bookmarks-toolbar.svg"); }
    		/* Lesezeichen verwalten */
    		#panelMenu_showAllBookmarks { list-style-image: url("${ProfilePath}/bookmarks-tray.svg"); } 
    
    		/*= Panel - Chronik ===========================================================*/
    		/*= Panel - History ==========================================================*/
    	
    		/* Kürzlich geschlossene Tabs */
    		#appMenuRecentlyClosedTabs { list-style-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAACcklEQVRYR8WWzVEbQRBGtRHYHHy2iAAIgEJkIEdgcfbBEAEiAhcXrogITAbI5QAMVQ5gdfYBiEB8b6uHaq1md2ZXBk3VlHa0/fOmu6dni8GWR7Fl/4NWgOVyeSvAz5rHRVE8xWAls6//P7h3C8mWuRtLASzN0L2HkNOPWn/XnGgOI86QnwnkMgWSC4CdCkKTHf/UBCI1iMQXgaAbHV0AMIBBv+OF1qQJB7wDamwzpIXUnQgCubXRFcAbuJDRacyopYh3pIkBBHW0Fom+AHMZIx2tQyATCVybUCmd3bpCXwDsUGQnGRBE4tzkSMXM62wCkAVh6SglTE3cC+DgfwJgiyqPFlhwJIhTPf+w9a7vE6kIUDR7iTA3FqMDGOn5ztYU4zy8SwFwrDj3TeOp7Yx7JUUhNLUV4He7CzYGkIGhdsS9kDMe/N1hhfhoit0iYJcN+ctpvR5upsUZILJBd6R9MzrVALv+08N5ALkRwEQAwHzlT61X0p4qwql0QhO50PM8J/6SmQSH+j3U/G16FZC3kQIoJUzef0lxlOl8UMv5P+l9Mt2D+qlJAUSPTg6IIIjWkZO9lHMa0spoBJABdhxtHpkAPn1/SYU/GcFGG0Bj+8wE8Bv4JudXMb02gNCGn6Xc9QhWvlzz4a7gJlz7rnwFsMLhqEBO+x0acTR3mVGYSa46fhqlzbl+sVnBeAAvHOzzybUfI88EIHJEst5BXzflAULF4xRaFKd9nQdAiyz1RFSZwHCJ7dQj0PvI5UQDGcFM9VM1ttARYxEgR8y3GCMZZUYBCHvubbcp3EIRGNZTQH44Lm8NQY2NQ0t+tw+SppBtHeAFE7gPMJeICC4AAAAASUVORK5CYII="); }
    		/* Kürzlich geschlossene Fenster */
    		#appMenuRecentlyClosedWindows { list-style-image: url("${ProfilePath}/window.svg"); }
    		/* Vorherige Sitzung wiederherstellen */
    		#appMenu-restoreSession{ list-style-image: url("${ProfilePath}/session-restore.svg"); }
    		/* Neueste Chronik löschen ... */
    		#appMenuClearRecentHistory { list-style-image: url("${ProfilePath}/history-forget.svg"); }
    		/* Chronik verwalten */
    		#PanelUI-historyMore { list-style-image: url("${ProfilePath}/history.svg"); }
    		/* Alle Tabs wieder öffnen */
    		#appMenu-library-recentlyClosedTabs { list-style-image: url("${ProfilePath}/window-move.svg"); }
    		/* Alle Fenster wieder öffnen */
    		#appMenu-library-recentlyClosedWindows { list-style-image: url("${ProfilePath}/session-restore.svg"); }
    		/* Chronik durchsuchen */
    		#appMenuSearchHistory { list-style-image: url("${ProfilePath}/window-search.svg"); }
    
    		/*= Panel - More tools =======================================================*/
    	
    		/* Symbolleiste anpassen ... */
    		#appmenu-moreTools-button { list-style-image: url("${ProfilePath}/Themes.svg"); }
    		/* Werkzeuge für Web-... */
    		#appmenu-developer-tools-view .subviewbutton:nth-child(1) { list-style-image: url("${ProfilePath}/developer.svg"); }
    		/* Task Manager */
    		#appmenu-developer-tools-view .subviewbutton:nth-child(2) { list-style-image: url("${ProfilePath}/performance.svg"); }
    		/* Externes Debugging - Edge bug.svg */
    		#appmenu-developer-tools-view .subviewbutton:nth-child(3) { list-style-image: url("${ProfilePath}/bug.svg"); }
    		/* Browser-Werkzeuge - Edge webdeveloper.svg */
    		#appmenu-developer-tools-view .subviewbutton:nth-child(4) { list-style-image: url("${ProfilePath}/window-dev-tools.svg"); }
    		/* Browser-Inhaltswerkzeuge */
    		#appmenu-developer-tools-view .subviewbutton:nth-child(5) { list-style-image: url("${ProfilePath}/command-frames.svg"); }
    		/* Browser-Konsole */
    		#appmenu-developer-tools-view .subviewbutton:nth-last-child(5) { list-style-image: url("${ProfilePath}/command-console.svg"); }
    		/* Bildschirmgrößen testen */
    		#appmenu-developer-tools-view .subviewbutton:nth-last-child(4) { list-style-image: url("${ProfilePath}/command-responsivemode.svg"); }
    		/* Farbpipette */
    		#appmenu-developer-tools-view .subviewbutton:nth-last-child(3) { list-style-image: url("${ProfilePath}/command-eyedropper.svg"); }
    		/* Seitenquelltext anzeigen - Edge file-search.svg */
    		#appmenu-developer-tools-view .subviewbutton:nth-last-child(2) { list-style-image: url("${ProfilePath}/document-search.svg"); }
    		/* Erweiterungen für Entwickler */
    		#appmenu-developer-tools-view .subviewbutton:nth-last-child(1) { list-style-image: url("${ProfilePath}/addons.svg"); }
    	
    		/*= Panel - Help =============================================================*/
    	
    		/* Hilfe erhalten */  
    		#appMenu_menu_openHelp { list-style-image: url("${ProfilePath}/help.svg"); }
    		/* Ideen und Feedback teilen ... */
    		#appMenu_feedbackPage { list-style-image: url("${ProfilePath}/send.svg"); }
    		/* Fehlerbehebungsmodus ... */
    		#appMenu_helpSafeMode { list-style-image: url("${ProfilePath}/debugging-workers.svg"); }
    		/* Weitere Informationen zur ... */
    		#appMenu_troubleShooting { list-style-image: url("${ProfilePath}/more.svg"); }
    		/* ?? Eine Glühbirne ?? */
    		#appMenu_help_reportSiteIssue { list-style-image: url("${ProfilePath}/lightbulb.svg"); }
    		/* Betrügerische Website melden ... */
    		#appMenu_menu_HelpPopup_reportPhishingtoolmenu { list-style-image: url("${ProfilePath}/warning.svg"); }
    		/* Zu einem neuen Gerät wechseln */
    		#appMenu_helpSwitchDevice { list-style-image: url("${ProfilePath}/send-to-device.svg"); }
    		/* Über Firefox */
    		#appMenu_aboutName { list-style-image: url("${ProfilePath}/firefox.svg"); }
    
    		/* ================================================================================================== */
    
    		/*Abstände für alle Icons im Kontextmenü*/
    		
    		menupopup:not(.in-menulist) > menu:not(.menu-iconic),
    		menupopup:not(.in-menulist, [aria-label]) > menuitem:not(.menuitem-iconic, [checked="true"]) {
    			padding-inline-start: calc(1em + 24px) !important;
    			background-position: left 1em center;
    			background-repeat: no-repeat;
    			background-size: 16px;
    			-moz-context-properties: fill, fill-opacity;
    			fill: #E0E0E0 !important;
    
    		}
    		/*	
    		menu[_moz-menuactive="true"][disabled="true"],
    		menuitem[_moz-menuactive="true"][disabled="true"] { */
    		/*
    		:is(menu,menuitem)[_moz-menuactive="true"][disabled="true"] {
    			background-color: #5C5C5C !important;
    			border-radius: 4px !important;
    		}	
    		*/
    		#context-savepage { background-image: url("${ProfilePath}/folder-save.svg"); }
    		#context-pocket { background-image: url("${ProfilePath}/pocket-outline.svg"); }
    		#context-selectall { background-image: url("${ProfilePath}/select-all-on.svg"); }
    		#context-take-screenshot { background-image: url("${ProfilePath}/screenshot.svg"); }
    		#context-viewsource { background-image: url("${ProfilePath}/document-search.svg"); }
    		#context-inspect-a11y { background-image: url("${ProfilePath}/tool-accessibility.svg"); }
    		#context-inspect { background-image: url("${ProfilePath}/command-pick.svg"); }
    		#context-copy { background-image: url("${ProfilePath}/edit-copy.svg"); }
    
    		#context-searchselect { background-image: url("${ProfilePath}/search.svg"); }
    		#context-translate-selection { background-image: url(chrome://browser/skin/translations.svg); }
    		#context-viewpartialsource-selection { background-image: url("${ProfilePath}/document-search.svg"); }
    
    		#context-openlinkincurrent { background-image: url("${ProfilePath}/link-square.svg"); }
    		#context-openlinkintab { background-image: url("${ProfilePath}/tab-open.svg"); }
    		#context-openlink { background-image: url("${ProfilePath}/session.svg"); }
    		#context-openlinkprivate { background-image: url("${ProfilePath}/privateBrowsing.svg"); }
    		#context-bookmarklink { background-image: url("${ProfilePath}/folder-save.svg"); }
    		#context-savelink { background-image: url("${ProfilePath}/image-add.svg"); }
    		#context-print-selection { background-image: url("${ProfilePath}/printer.svg"); }
    
    		#context-savelinktopocket { background-image: url("${ProfilePath}/image.svg"); }
    		#context-copylink { background-image: url("${ProfilePath}/link.svg"); }
    		#context-reloadimage { background-image: url("${ProfilePath}/reload.svg"); }
    		#context-viewimage { background-image: url("${ProfilePath}/image-add.svg"); }
    		#context-saveimage { background-image: url("${ProfilePath}/image.svg"); }
    		#context-copyimage-contents  { background-image: url("${ProfilePath}/image-copy.svg"); }
    		#context-copyimage { background-image: url("${ProfilePath}/image-resize.svg"); }
    		#context-sendimage { background-image: url("${ProfilePath}/link.svg"); }
    		#context-setDesktopBackground { background-image: url("${ProfilePath}/image-resize.svg"); }
    
    		#_36bde3a5-9f17-4ad9-a587-d4a3c8e8d200_-menuitem-_background-tab_link { background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAACcklEQVRYR8WWzVEbQRBGtRHYHHy2iAAIgEJkIEdgcfbBEAEiAhcXrogITAbI5QAMVQ5gdfYBiEB8b6uHaq1md2ZXBk3VlHa0/fOmu6dni8GWR7Fl/4NWgOVyeSvAz5rHRVE8xWAls6//P7h3C8mWuRtLASzN0L2HkNOPWn/XnGgOI86QnwnkMgWSC4CdCkKTHf/UBCI1iMQXgaAbHV0AMIBBv+OF1qQJB7wDamwzpIXUnQgCubXRFcAbuJDRacyopYh3pIkBBHW0Fom+AHMZIx2tQyATCVybUCmd3bpCXwDsUGQnGRBE4tzkSMXM62wCkAVh6SglTE3cC+DgfwJgiyqPFlhwJIhTPf+w9a7vE6kIUDR7iTA3FqMDGOn5ztYU4zy8SwFwrDj3TeOp7Yx7JUUhNLUV4He7CzYGkIGhdsS9kDMe/N1hhfhoit0iYJcN+ctpvR5upsUZILJBd6R9MzrVALv+08N5ALkRwEQAwHzlT61X0p4qwql0QhO50PM8J/6SmQSH+j3U/G16FZC3kQIoJUzef0lxlOl8UMv5P+l9Mt2D+qlJAUSPTg6IIIjWkZO9lHMa0spoBJABdhxtHpkAPn1/SYU/GcFGG0Bj+8wE8Bv4JudXMb02gNCGn6Xc9QhWvlzz4a7gJlz7rnwFsMLhqEBO+x0acTR3mVGYSa46fhqlzbl+sVnBeAAvHOzzybUfI88EIHJEst5BXzflAULF4xRaFKd9nQdAiyz1RFSZwHCJ7dQj0PvI5UQDGcFM9VM1ttARYxEgR8y3GCMZZUYBCHvubbcp3EIRGNZTQH44Lm8NQY2NQ0t+tw+SppBtHeAFE7gPMJeICC4AAAAASUVORK5CYII="); }
    
    		/* Rückgängig */
    		#context-undo { background-image: url("${ProfilePath}/undo.svg"); }
    		/* Wiederherstellen */
    		#context-redo{ background-image: url("${ProfilePath}/sync.svg"); }
    		/* Ausschneiden */
    		#context-cut { background-image: url("${ProfilePath}/edit-cut.svg"); }
    		/* Kopieren */
    		#context-copy { background-image: url("${ProfilePath}/copy.svg"); }
    		/* Einfügen */
    		#context-paste { background-image: url("${ProfilePath}/paste.svg"); }
    		/* Löschen */
    		#context-delete { background-image: url("${ProfilePath}/delete.svg"); }
    		/* Alles auswählen */
    		#context-selectall { background-image: url("${ProfilePath}/select-all-on.svg"); }
    		/* Rechtschreibung prüfen */
    		#spell-check-enabled { background-image: url("${ProfilePath}/spell-check.svg"); }
    
    
    		/* ----------------------------------------- */
    		/* --------- Kontextmenüs der Tabs --------- */
    		/* ----------------------------------------- */
    
    		/* Neuer Tab */
    		#context_openANewTab { background-image: url("${ProfilePath}/tab-open.svg"); }
    		/* Tab neu laden */
    		#context_reloadTab { background-image: url("${ProfilePath}/reload.svg"); }
    		/* Alle Tabs neu laden */
    		#tabContextMenu > menuitem:nth-child(4) { background-image: url("${ProfilePath}/reload.svg");
    		fill: #fbc96e !important; }
    		/* Tab stummschalten */
    		#context_toggleMuteTab { background-image: url("${ProfilePath}/audio-muted.svg"); }
    		/* Stummschaltung für Tab aufheben */
    		#context_toggleMuteTab[muted] { background-image: url("${ProfilePath}/audio.svg"); }
    		/* Tab anheften */
    		#context_pinTab { background-image: url("${ProfilePath}/glyph-pin-16.svg"); }
    		/* Tab klonen */
    		#context_duplicateTab { background-image: url("${ProfilePath}/duplicat.svg"); }
    		/* Tab als Lesezeichen hinzufügen */
    		#context_bookmarkTab { background-image: url("${ProfilePath}/bookmark-hollow.svg"); }
    		/* Tab verschieben */
    		#context_moveTabOptions { background-image: url("${ProfilePath}/arrow-swap.svg"); }
    		
    			/* <<< Submenu_Tab verschieben >>> */	
    		
    			/* An Anfang verschieben */
    			#context_moveToStart { background-image: url("${ProfilePath}/arrow-back.svg"); }
    			/* An Ende verschieben */
    			#context_moveToEnd { background-image: url("${ProfilePath}/arrow-forward.svg"); }
    			/* In neues Fenster verschieben */
    			#context_openTabInWindow { background-image: url("${ProfilePath}/session-restore.svg"); }	
    		
    		/* Teilen */
    		.share-tab-url-item { display: none; }
    		/* Alle Tabs auswählen */
    		#context_selectAllTabs { background-image: url("${ProfilePath}/tab-multiple.svg"); }
    		/* Tab schließen */
    		#context_closeTab { background-image: url("${ProfilePath}/tab-close.svg"); }
    		/*Mehrere Tabs schließen */
    		#context_closeTabOptions { background-image: url("${ProfilePath}/tab-close.svg"); }
    
    			/* <<< Submenu_Mehrere Tabs schließen >>> */
    			
    			/* Doppelte Tabs schließen */
    			#context_closeDuplicateTabs { background-image: url("${ProfilePath}/tab-close.svg");
    			fill: #7B7B7B !important; }
    			/* Linke Tabs schließen */
    			#context_closeTabsToTheStart { background-image: url("${ProfilePath}/tab-left.svg"); }
    			/* Rechte Tabs schließen */
    			#context_closeTabsToTheEnd { background-image: url("${ProfilePath}/tab-right.svg"); }
    			/* Andere Tabs schließen */
    			#context_closeOtherTabs { background-image: url("${ProfilePath}/tab-all.svg"); }
    		
    		/* Geschlossenen Tab wieder öffnen */
    		#context_undoCloseTab { background-image: url("${ProfilePath}/tab-restore"); }
    
    		/* ================================================================ */
    
    		/* Neuer Tab */
    		#toolbar-context-openANewTab { background-image: url("${ProfilePath}/session.svg"); }
    		/* Ausgewählten Tab neu laden */
    		#toolbar-context-reloadSelectedTab { background-image: url("${ProfilePath}/reload.svg"); }
    		/* Ausgewählten Tab als Lesezeichen hinzufügen... */
    		#toolbar-context-bookmarkSelectedTab { background-image: url("${ProfilePath}/bookmark-hollow.svg"); }
    		/* Alle Tabs auswählen */
    		#toolbar-context-selectAllTabs { background-image: url("${ProfilePath}/tab-multiple.svg"); }
    
    		/* Geschlossene Tabs wieder öffnen */
    		#toolbar-context-undoCloseTab { background-image: url("${ProfilePath}/undo.svg"); }
    
    		/* Symbolleiste anpassen... */
    		menuitem.viewCustomizeToolbar { background-image: url("${ProfilePath}/Themes.svg"); }
    
    		/* Lesezeichen-Symbolleiste */
    		#toggle_PersonalToolbar { background-image: url("${ProfilePath}/bookmarks-toolbar.svg"); }
    
    		/* --------------------------------------------- */
    		/* - Kontextmenüs der Lesezeichen-Symbolleiste - */
    		/* --------------------------------------------- */
    
    		/* Löschen */
    		#placesContext_delete { background-image: url("${ProfilePath}/delete.svg"); }
    		/* Ausschneiden */
    		#placesContext_cut { background-image: url("${ProfilePath}/edit-cut.svg"); }
    		/* Kopieren */
    		#placesContext_copy { background-image: url("${ProfilePath}/copy.svg"); }
    		/* Einfügen */
    		#placesContext_paste, #placesContext_paste_group { background-image: url("${ProfilePath}/paste.svg"); }
    
    		/* Alle Lesezeichen öffnen */
    		#placesContext_openBookmarkContainer\:tabs { background-image: url("${ProfilePath}/window-move.svg"); }
    		/* Lesezeichen hinzufügen... */
    		#placesContext_new\:bookmark { background-image: url("${ProfilePath}/bookmark-hollow.svg"); }
    		/* Ordner hinzufügen... */
    		#placesContext_new\:folder { background-image: url("${ProfilePath}/folder.svg"); }
    		/* Trennlinie hinzufügen... */
    		#placesContext_new\:separator { background-image: url("${ProfilePath}/vertical-line.svg"); }
    
    		/* Lesezeichen verwalten */
    		#placesContext_showAllBookmarks { background-image: url("${ProfilePath}/bookmarks-tray.svg"); }
    		/* In neuem Tab öffnen */
    		#placesContext_open\:newtab { background-image: url("${ProfilePath}/session.svg"); }
    		/* In neuem Fenster öffnen */
    		#placesContext_open\:newwindow { background-image: url("${ProfilePath}/window.svg"); }
    		/* In neuem privaten Fenster öffnen */
    		#placesContext_open\:newprivatewindow { background-image: url("${ProfilePath}/privateBrowsing.svg"); }
    
    		/* Lesezeichen bearbeiten... */
    		#placesContext_show_bookmark\:info { background-image: url("${ProfilePath}/edit.svg"); }
    		/* Lesezeichen löschen */
    		#placesContext_deleteBookmark { background-image: url("${ProfilePath}/delete.svg"); }
    
    		/* ------------------------------------------ */
    		/* ------- Kontextmenüs der Menuleise ------- */
    		/* ------------------------------------------ */
    
    		/* In Überhangmenü verschieben */
    		.customize-context-moveToPanel { background-image: url("${ProfilePath}/glyph-pin-16.svg"); }
    		/* Aus Symbolleiste entfernen */
    		.customize-context-removeFromToolbar { background-image: url("${ProfilePath}/delete.svg"); }
    
    		/* --------------------------------------------- */
    		/* ------- Kontextmenüs in der Menuleise ------- */
    		/* --------------------------------------------- */
    
    		/* --- Datei --- */
    
    		/* Neuer Tab */
    		#menu_newNavigatorTab { background-image: url("${ProfilePath}/tab-open.svg"); }
    		/* Neues Fenster */
    		#menu_newNavigator { background-image: url("${ProfilePath}/session.svg"); }
    		/* Neues privates Fenster */
    		#menu_newPrivateWindow { background-image: url("${ProfilePath}/privateBrowsing.svg"); }
    		/* Datei öffnen... */
    		#menu_openFile { background-image: url("${ProfilePath}//folder-open.svg"); }
    		/* Seite speichern unter... */
    		#menu_savePage { background-image: url("${ProfilePath}/folder-save.svg"); }
    		/* Link per E-Mail senden... */
    		#menu_sendLink { background-image: url("${ProfilePath}/mail.svg"); }
    		/* Drucken... */
    		#menu_print { background-image: url("${ProfilePath}/printer.svg"); }
    		/* Daten aus einem anderen Browser importieren... */
    		#menu_importFromAnotherBrowser { background-image: url("${ProfilePath}/import.svg"); }
    		/* Offline arbeiten */
    		#goOfflineMenuitem { background-image: url("${ProfilePath}/plug-disconnected.svg"); }
    		/* Beenden */
    		#menu_FileQuitItem { background-image: url("${ProfilePath}/quit.svg"); }
    
    		/* --- Bearbeiten --- */
    
    		/* Rückgängig */
    		#menu_undo { background-image: url("${ProfilePath}/undo.svg"); }
    		/* Wiederherstellen */
    		#menu_redo { background-image: url("${ProfilePath}/sync.svg"); }
    		/* Ausschneiden */
    		#menu_cut { background-image: url("${ProfilePath}/edit-cut.svg"); }
    		/* Kopieren */
    		#menu_copy { background-image: url("${ProfilePath}/copy.svg"); }
    		/* Einfügen */
    		#menu_paste { background-image: url("${ProfilePath}/paste.svg"); }
    		/* Löschen */
    		#menu_delete { background-image: url("${ProfilePath}/delete.svg"); }
    		/* Alles auswählen */
    		#menu_selectAll { background-image: url("${ProfilePath}/select-all-on.svg"); }
    		/* Seite durchsuchen... */
    		#menu_find { background-image: url("${ProfilePath}/search.svg"); }
    
    		/* --- Ansicht --- */
    
    		/* Symbolleisten */
    		#viewToolbarsMenu { background-image: url("${ProfilePath}/toolbar.svg"); }
    		
    			/* <<< Submenu_Symbolleisten >>> */
    			
    			#toggle_PersonalToolbar { background-image: url("${ProfilePath}/bookmarks-toolbar.svg"); }
    			#menu_customizeToolbars { background-image: url("${ProfilePath}/Themes.svg"); }	
    
    			/* ----------------------------------- */
    			/* -- Checkbox und Haken im Submenu -- */
    			/* ----------------------------------- */
    
    			menuitem[checked="true"] > .menu-iconic-left {
    				list-style-image: url("${ProfilePath}/check.svg");
    				fill: #00E400 !important;
    			}
    
    			[data-l10n-id="toolbar-context-menu-bookmarks-toolbar-always-show-2"]:not([checked="true"]),
    			[data-l10n-id="toolbar-context-menu-bookmarks-toolbar-on-new-tab-2"]:not([checked="true"]),
    			[data-l10n-id="toolbar-context-menu-bookmarks-toolbar-never-show-2"]:not([checked="true"]),
    			#menu_zoomReset:not([checked="true"]),
    			#toggle_zoom:not([checked="true"]),
    			#menu_pageStylePersistentOnly:not([checked="true"]) {
    				background-image: url("${ProfilePath}/square.svg");
    				background-repeat: no-repeat;
    			}
    
    			/* ----------------------------------- */
    
    		/* Sidebar */
    		#viewSidebarMenuMenu { background-image: url("${ProfilePath}/Dock Side Left.svg"); }
    
    			/* <<< Submenu_Sidebar >>> */
    
    			#menu_bookmarksSidebar:not([checked="true"]) { 
    				background-image: url("${ProfilePath}/bookmark.svg"); 
    				background-repeat: no-repeat;
    			}
    			#menu_historySidebar:not([checked="true"]) { 
    				background-image: url("${ProfilePath}/history.svg"); 
    				background-repeat: no-repeat;
    			}
    			#menu_tabsSidebar:not([checked="true"]) { 
    				background-image: url("${ProfilePath}/Dock Side Left.svg"); 
    				background-repeat: no-repeat;
    			}
    
    		/* Zoom */
    		#viewFullZoomMenu { background-image: url("${ProfilePath}/screenshot.svg"); }
    		
    			/* <<< Submenu_Zoom >>> */
    
    			#menu_zoomEnlarge { background-image: url("${ProfilePath}/zoom-in.svg"); }	/*  +  */
    			#menu_zoomReduce { background-image: url("${ProfilePath}/zoom-out.svg"); }	/*  -  */
    		
    		/* Webseiten-Stil */
    		#pageStyleMenu { background-image: url("${ProfilePath}/document-css.svg"); }
    		
    			/* <<< Submenu_Webseiten-Stil >>> */
    		
    			#menu_pageStyleNoStyle:not([checked="true"]) { 
    				background-image: url("${ProfilePath}/document-css.svg"); 
    				background-position: left 1em center;
    				background-repeat: no-repeat;
    			}	
    		
    		/* Textkodierung reparieren */
    		#repair-text-encoding { background-image: url("${ProfilePath}/characterEncoding.svg"); }
    		/* Vollbild */
    		#fullScreenItem { background-image: url("${ProfilePath}/fullscreen.svg"); }
    
    		/* --- Chronik --- */
    
    		/* Gesamte Chronik anzeigen */
    		#menu_showAllHistory { background-image: url("${ProfilePath}/history.svg"); }
    		/* Neueste Chronik löschen... */
    		#sanitizeItem { background-image: url("${ProfilePath}/history-forget.svg"); }
    		/* Vorherige Sitzung wiederherstellen */
    		#historyRestoreLastSession { background-image: url("${ProfilePath}/session-restore.svg"); }
    		/* Chronik durchsuchen */
            #menu_searchHistory { background-image: url("${ProfilePath}/window-search.svg"); }
    		/* Kürzlich geschlossene Tabs */
    		#historyUndoMenu { background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAACcklEQVRYR8WWzVEbQRBGtRHYHHy2iAAIgEJkIEdgcfbBEAEiAhcXrogITAbI5QAMVQ5gdfYBiEB8b6uHaq1md2ZXBk3VlHa0/fOmu6dni8GWR7Fl/4NWgOVyeSvAz5rHRVE8xWAls6//P7h3C8mWuRtLASzN0L2HkNOPWn/XnGgOI86QnwnkMgWSC4CdCkKTHf/UBCI1iMQXgaAbHV0AMIBBv+OF1qQJB7wDamwzpIXUnQgCubXRFcAbuJDRacyopYh3pIkBBHW0Fom+AHMZIx2tQyATCVybUCmd3bpCXwDsUGQnGRBE4tzkSMXM62wCkAVh6SglTE3cC+DgfwJgiyqPFlhwJIhTPf+w9a7vE6kIUDR7iTA3FqMDGOn5ztYU4zy8SwFwrDj3TeOp7Yx7JUUhNLUV4He7CzYGkIGhdsS9kDMe/N1hhfhoit0iYJcN+ctpvR5upsUZILJBd6R9MzrVALv+08N5ALkRwEQAwHzlT61X0p4qwql0QhO50PM8J/6SmQSH+j3U/G16FZC3kQIoJUzef0lxlOl8UMv5P+l9Mt2D+qlJAUSPTg6IIIjWkZO9lHMa0spoBJABdhxtHpkAPn1/SYU/GcFGG0Bj+8wE8Bv4JudXMb02gNCGn6Xc9QhWvlzz4a7gJlz7rnwFsMLhqEBO+x0acTR3mVGYSa46fhqlzbl+sVnBeAAvHOzzybUfI88EIHJEst5BXzflAULF4xRaFKd9nQdAiyz1RFSZwHCJ7dQj0PvI5UQDGcFM9VM1ttARYxEgR8y3GCMZZUYBCHvubbcp3EIRGNZTQH44Lm8NQY2NQ0t+tw+SppBtHeAFE7gPMJeICC4AAAAASUVORK5CYII="); }
    		/* Kürzlich geschlossene Fenster */
    		#historyUndoWindowMenu { background-image: url("${ProfilePath}/window.svg"); }
    
    		/* Lesezeichen */
    
    		/* Lesezeichen verwalten */
    		#bookmarksShowAll { background-image: url("${ProfilePath}/bookmarks-tray.svg"); }
    		/* Aktuellen Tab als Lesezeichen hinzufügen */
    		#menu_bookmarkThisPage { background-image: url("${ProfilePath}/bookmark-hollow.svg"); }
    		/* Lesezeichen durchsuchen */
    		#menu_searchBookmarks { background-image: url("${ProfilePath}/search.svg"); }
    		/* Lesezeichen-Symbolleiste */
    		#bookmarksToolbarFolderMenu { list-style-image: url("${ProfilePath}/bookmarksToolbar.svg"); }
    		/* Weitere Lesezeichen */
    		#menu_unsortedBookmarks { list-style-image: url("${ProfilePath}/mail-inbox-all.svg") }
    
    		/* --- Extras --- */
    
    		/* Downloads */
    		#menu_openDownloads { background-image: url("${ProfilePath}/downloads.svg"); }
    		/* Add-ons und Themes */
    		#menu_openAddons { background-image: url("${ProfilePath}/addons.svg"); }
    		/* Firefox View */
    		#menu_openFirefoxView { background-image: url("${ProfilePath}/firefox.svg"); }
    		/* Anmelden */
    		#sync-setup { background-image: url("${ProfilePath}/avatar-empty.svg"); }
    		/* Browser-Werkzeuge */
    		#browserToolsMenu { background-image: url("${ProfilePath}/debugging-workers.svg"); }
    		
    			/* <<< Submenu_Browser-Werkzeuge >>> */	
    
    			/* Werkzeuge für Web-Entwickler */
    			#menu_devToolbox { background-image: url("${ProfilePath}/developer.svg"); }
    			/* Task-Manager */
    			#menu_taskManager { background-image: url("${ProfilePath}/performance.svg"); }
    			/* Externes Debugging */
    			#menu_devtools_remotedebugging { background-image: url("${ProfilePath}/bug.svg"); }
    			/* Browser-Werkzeuge */
    			#menu_browserToolbox { background-image: url("${ProfilePath}/window-dev-tools.svg"); }
    			/* Browser-Inhaltswerkzeuge */
    			#menu_browserContentToolbox { background-image: url("${ProfilePath}/command-frames.svg"); }
    			/* Browser-Konsole */
    			#menu_browserConsole { background-image: url("${ProfilePath}/command-console.svg"); }
    			/* Bildschirmgrößen testen */
    			#menu_responsiveUI { background-image: url("${ProfilePath}/command-responsivemode.svg"); }
    			/*Farbpipette */
    			#menu_eyedropper { background-image: url("${ProfilePath}/command-eyedropper.svg"); }
    			/* Seitenquelltext anzeigen */
    			#menu_pageSource { background-image: url("${ProfilePath}/document-search.svg"); }
    			/* Erweiterungen für Entwickler */
    			#extensionsForDevelopers { background-image: url("${ProfilePath}/addons.svg"); }	
    		
    		/* Seiteninformationen */
    		#menu_pageInfo { background-image: url("${ProfilePath}/document-endnote.svg"); }
    		/* Einstellungen */
    		#menu_preferences { background-image: url("${ProfilePath}/settings.svg"); }
    
    		/* --- Hilfe --- */
    
    		/* Hilfe erhalten */
    		#menu_openHelp { background-image: url("${ProfilePath}/help.svg"); }
    		/* Ideen und Feedback teilen... */
    		#feedbackPage { background-image: url("${ProfilePath}/send.svg"); }
    		/* Fehlerbehebungsmodus... */
    		#helpSafeMode { background-image: url("${ProfilePath}/debugging-workers.svg"); }
    		/* Weitere Informationen zur Fehlerbehebung */
    		#troubleShooting { background-image: url("${ProfilePath}/more.svg"); }
    		/* Betrügerische Website melden... */
    		#menu_HelpPopup_reportPhishingtoolmenu { background-image: url("${ProfilePath}/warning.svg"); }
    		/* Zu einem neuen Gerät wechseln */
    		#helpSwitchDevice { background-image: url("${ProfilePath}/send-to-device.svg"); }
    		/* Über Firefox */
    		#aboutName { background-image: url("${ProfilePath}/firefox.svg"); }
    
    		/* ---------------------------------------------- */
    		/* ------------- Kontextmenü Frames ------------- */
    		/* ---------------------------------------------- */
    		
    		/* Aktueller Frame */
    		#frame { background-image: url("${ProfilePath}/command-frames.svg"); 
    		background-repeat: no-repeat;
    		}
    
    			/* <<< Submenu_Aktueller Frame >>> */	
    
    			/* Nur diesen Frame anzeigen */
    			#context-showonlythisframe { background-image: url("${ProfilePath}/tab.svg"); }
    			/* Frame in neuem Tab öffnen */
    			#context-openframeintab { background-image: url("${ProfilePath}/open-in-new.svg"); }
    			/* Frame in neuem Fenster öffnen */
    			#context-openframe { background-image: url("${ProfilePath}/window.svg"); }
    			/* Frame neu laden */
    			#context-reloadframe { background-image: url("${ProfilePath}/reload.svg"); }
    			/*Lesezeichen für diesen Frame hinzufügen */
    			#context-bookmarkframe { background-image: url("${ProfilePath}/bookmark-hollow.svg"); }
    			/*Frame speichern unter... */
    			#context-saveframe { background-image: url("${ProfilePath}/folder-save.svg"); }
    			/* Frame drucken... */
    			#context-printframe { background-image: url("${ProfilePath}/printer.svg"); }
    			/* Bildschirmfoto aufnehmen */
    			#context-take-frame-screenshot { background-image: url("${ProfilePath}/screenshot.svg"); }
    			/* Frame-Quelltext anzeigen */
    			#context-viewframesource { background-image: url("${ProfilePath}/document-search.svg"); }
    			/* Frame-Informationen anzeigen */
    			#context-viewframeinfo { background-image: url("${ProfilePath}/info.svg"); }
    
    		/* ---------------------------------------------- */
    		/* ----------- Kontextmenü Adressfeld ----------- */
    		/* ---------------------------------------------- */
    		/*	
    		#urlbar-input-container {
    			padding-inline-start: calc(1em + 24px) !important;
    			background-position: left 1em center;
    			background-repeat: no-repeat;
    			background-size: 16px;
    			-moz-context-properties: fill, fill-opacity;
    			fill: currentColor;
    		}
    		*/
    		/* Rückgängig */
    		[data-l10n-id="text-action-undo"] {
    			background-image: url("${ProfilePath}/undo.svg");
    		}
    		/* Wiederherstellen */
    		[data-l10n-id="text-action-redo"] {
    			background-image: url("${ProfilePath}/sync.svg");
    		}
    		/* Ausschneiden */
    		[data-l10n-id="text-action-cut"] {
    			background-image: url("${ProfilePath}/edit-cut.svg");
    		}
    		/* Kopieren */
    		[data-l10n-id="text-action-copy"] {
    			background-image: url("${ProfilePath}/copy.svg");
    		}
    		/* Einfügen */
    		[data-l10n-id="text-action-paste"] {	
    			background-image: url("${ProfilePath}/paste.svg");
    		}
    		/* Einfügen & Los */
    		#paste-and-go {
    			background-image: url("${ProfilePath}/redo.svg");
    		}
    		/* Löschen */
    		[data-l10n-id="text-action-delete"] {
    			background-image: url("${ProfilePath}/delete.svg");
    		}
    		/* Alles auswählen */
    		[data-l10n-id="text-action-select-all"] {
    			background-image: url("${ProfilePath}/select-all-on.svg");
    		}
    
    		/* ------------------------------------------- */
    		/* ---------- Symbole der Menuleise ---------- */
    		/* ------------------------------------------- */
    
    		/* Datei  */
    		#file-menu::before { background: url("${ProfilePath}/mail-inbox-all.svg") no-repeat !important; }
    		/* Bearbeiten  */
    		#edit-menu::before { background: url("${ProfilePath}/edit.svg") no-repeat !important; }
    		/* Ansicht  */
    		#view-menu::before { background: url("${ProfilePath}/content-view.svg") no-repeat !important; }
    		/* Chronik  */
    		#history-menu::before { background: url("${ProfilePath}/history.svg") no-repeat !important; }
    		/* Lesezeichen  */
    		#bookmarksMenu::before { background: url("${ProfilePath}/bookmark.svg") no-repeat !important; }
    		/* Extras  */
    		#tools-menu::before { background: url("${ProfilePath}/toolbox.svg") no-repeat !important; }
    		/* Hilfe  */
    		#helpMenu::before { background: url("${ProfilePath}/help.svg") no-repeat !important; }
    
    		/* Einstellungen  */
    		#file-menu::before,
    		#edit-menu::before,
    		#view-menu::before,
    		#history-menu::before,
    		#bookmarksMenu::before,
    		#tools-menu::before,
    		#helpMenu::before {
    			margin-left: 6px !important;
    			content: '' !important;
    			display: block !important;
    			width: 16px !important;
    			height: 16px !important;
    			background-repeat: no-repeat !important;
    			-moz-context-properties: fill, fill-opacity;
    			fill: currentColor;
    		}
    		#menu_FilePopup,
    		#menu_EditPopup,
    		#menu_viewPopup,
    		#historyMenuPopup,
    		#bookmarksMenuPopup,
    		#menu_ToolsPopup,
    		#menu_HelpPopup {
    			margin-top: 5px !important;
    		}
    
    		/* ------------------------------------ */
    		/* *** neuer Button "Erweiterungen" *** */
    		/* ******* Symbole im Popup-Menü ****** */
    		/* ------------------------------------ */
    
    		.unified-extensions-context-menu-pin-to-toolbar {   
    			background: url("${ProfilePath}/glyph-pin-16.svg") no-repeat !important;
    			background-position: 9px 4px !important;
    		}
    		.unified-extensions-context-menu-move-widget-up {   
    			background: url("${ProfilePath}/Pfeil-hoch_hellgrau.svg") no-repeat !important;
    			background-position: 6px 0px !important;
    		}
    		.unified-extensions-context-menu-move-widget-down {   
    			background: url("${ProfilePath}/Pfeil-runter_hellgrau.svg") no-repeat !important;
    			background-position: 6px 0px !important;
    		}
    		.unified-extensions-context-menu-manage-extension {
    			background: url("${ProfilePath}/extension.svg") no-repeat !important;
    			background-position: 9px 4px !important;
    		}
    		.unified-extensions-context-menu-remove-extension {
    			background: url("${ProfilePath}/delete.svg") no-repeat !important;
    			background-position: 9px 4px !important;
    		}
    		.unified-extensions-context-menu-report-extension {
    			background: url("${ProfilePath}/warning.svg") no-repeat !important;
    			background-position: 9px 4px !important;
    		}
    
    		/* ---------------------------------------------- */
    		/* ------------- Kontextmenü Video -------------- */
    		/* ---------------------------------------------- */
    
    		/* Pause */
    		#context-media-pause { background-image: url("${ProfilePath}/pause-1.svg"); }
    		/* Abspielen */
    		#context-media-play { background-image: url("${ProfilePath}/play-1.svg"); }
    		/* Ton aus */
    		#context-media-mute { background-image: url("${ProfilePath}/audio-16-mute.svg"); }
    		/* Ton an */
    		#context-media-unmute { background-image: url("${ProfilePath}//audio-16.svg"); }
    		/* Geschwindigkeit */
    		#context-media-playbackrate { background-image: url("${ProfilePath}/performance-16.svg"); }
    		/* Endlosschleife */
    		#context-media-loop { background-image: url("${ProfilePath}/repeat-1.svg"); }
    		/* Vollbild */
    		#context-video-fullscreen { background-image: url("${ProfilePath}/maximize-1.svg"); }
    		/* Vollbild beenden */
    		#context-leave-dom-fullscreen { background-image: url("${ProfilePath}/minimize-1.svg"); }
    		/* Steuerung ausblenden	! */
    		#context-media-hidecontrols { display: none !important; }
    		/* Steuerung anzeigen	! */
    		#context-media-showcontrols { display: none !important; }
    
    		/* -------------------------- */
    
    		/* Video in neuem Tab öffnen */
    		#context-viewvideo { background-image: url("${ProfilePath}/session.svg");; }
    		/* In Bild-im-Bild ansehen */
    		#context-video-pictureinpicture { background-image: url("${ProfilePath}/info.svg"); }
    
    		/* -------------------------- */
    
    		/* Standbild aufnehmen...	! */
    		#context-video-saveimage { display: none !important; } 
    		/* Video speichern unter...	! */
    		#context-savevideo { display: none !important; }
    		/* Video-Adresse kopieren	! */
    		#context-copyvideourl { display: none !important; }
    		/* Video per E-Mail senden...	! */
    		#context-sendvideo { display: none !important; }
    
    		#context-sep-setbackground { display: none !important; }
    
    		.bookmark-item[container] {
    			list-style-image: url("${ProfilePath}/folder-fat.svg") !important;
    		  }
    
    	`), null, null);
    
    //   `;
    //
    //   var sss = Cc['@mozilla.org/content/style-sheet-service;1'].getService(Ci.nsIStyleSheetService);
    //   var uri = makeURI('data:text/css;charset=UTF=8,' + encodeURIComponent(css));
       sss.loadAndRegisterSheet(uri, sss.AUTHOR_SHEET);
    
    })();
    Alles anzeigen

    Und hier das "neue" CSS:

    CSS
    @-moz-document url(chrome://browser/content/browser.xhtml) {
    
    /* ****************************************************************************************************************** */
    /* Die Entstehung des Symbole.css => https://www.camp-firefox.de/forum/thema/134970/?postID=1205292#post1205292       */
    /* Neue Version => https://www.camp-firefox.de/forum/thema/134970/?postID=1234538#post1234538                         */
    /* ****************************************************************************************************************** */
    
    	/*--------------------------------------------------------------------------*/	
    	/*--------- Texte im Hamburgermenü und in den Submenüs eingerückt ----------*/
    	/*-------------- und in dem Anmeldenbutton das Icon eingefügt --------------*/
    	/*--------------------------------------------------------------------------*/
    
    	.subviewbutton:not(.subviewbutton-iconic, [checked="true"], [targetURI]) > .toolbarbutton-icon {
    		width: 16px;
    		height: 16px;
    		margin-inline-end: 8px !important;
    		-moz-context-properties: fill, fill-opacity;
    		fill: currentColor;
    	}
    
    	#appMenu-fxa-label2::before,
    	#fxa-manage-account-button::after {
    		content: "";
    		display: -moz-box;
    		border-radius: 50%;
    		background: var(--avatar-image-url) no-repeat center/contain;
    		-moz-context-properties: fill;
    		fill: currentColor;
    	}
    
    	#appMenu-fxa-label2::before {
    		width: 16px;
    		height: 16px;
    		margin-inline-end: 8px;
    	}
    
    	/* Neuer Tab */
    	#appMenu-new-tab-button2 { list-style-image: url("../icons/new-window.svg"); }
    	/* Neues Fenster */
    	#appMenu-new-window-button2 { list-style-image: url("../icons/popup.svg"); }
    	/* Neues privates Fenster */
    	#appMenu-new-private-window-button2 { list-style-image: url("../icons/privateBrowsing.svg"); }
    	/* Lesezeichen */
    	#appMenu-bookmarks-button { list-style-image: url("../icons/bookmark.svg"); }
    	/* Neues privates Fenster */
    	#appMenu-new-private-window-button2 { list-style-image: url("../icons/privateBrowsing.svg"); }
    	/* Lesezeichen */
    	#appMenu-bookmarks-button { list-style-image: url("../icons/bookmark.svg"); }
    	/* Chronik */
    	#appMenu-history-button { list-style-image: url("../icons/history.svg"); }
    	/* Download */
    	#appMenu-downloads-button { list-style-image: url("../icons/downloads.svg"); }
    	/* Passwörter */
    	#appMenu-passwords-button { list-style-image: url("../icons/password2.svg"); }
    	/* Add-ons und Themes */
    	#appMenu-extensions-themes-button { list-style-image: url("../icons/addon.svg"); }
    	/* Drucken */
    	#appMenu-print-button2 { list-style-image: url("../icons/printer.svg"); }
    	/* Seite speichern unter */
    	#appMenu-save-file-button2 { list-style-image: url("../icons/save.svg"); }
    	/* In Seite suchen */
    	#appMenu-find-button2 { list-style-image: url("../icons/find.svg"); }
    	/* Seite übersetzen */
    	#appMenu-translate-button { list-style-image: url("../icons/translations.svg"); }	
    
    	/* Zoom */
    
    	#appMenu-zoom-controls::before {
    		margin-top: 3px !important;
    		margin-right: 10px !important; 
    		margin-left: -1px !important;
    		content: '' !important;
    		display: block !important;
    		width: 16px !important;
    		height: 16px !important;
    		mask-image:  url("../icons/screenshot.svg") !important;
    		mask-repeat: no-repeat;
    		mask-position: center;
    		background-color: #e1e1e1 !important;
    	}
    
    	/*Einstellungen */
    	#appMenu-settings-button { list-style-image: url("../icons/settings.svg"); }
    	/*Weitere Werkzeuge */
    	#appMenu-more-button2 { list-style-image: url("../icons/debugging-workers.svg"); }
    	/* Hilfe */
    	#appMenu-help-button2 { list-style-image: url("../icons/help.svg"); }
    	/* Beenden */
    	#appMenu-quit-button2 { list-style-image: url("../icons/quit.svg"); }
    
    	/*= Panel - Bookmark =========================================================*/
      
    	/* Lesezeichen bearbeiten */
    	
    	[data-l10n-id="bookmarks-bookmark-edit-panel"]::before {
    		margin-top: 3px !important;	
    		margin-right: -15px !important;
    		margin-left: -1px !important;
    		content: '' !important;
    		display: block !important;
    		width: 16px !important;
    		height: 16px !important;
    		mask-image: url("../icons/popup.svg") !important;
    		mask-repeat: no-repeat;
    		mask-position: center;
    		background-color: #e1e1e1 !important;
    	}
    
    	/* Aktuellen Tab als Lesezeichen ... */
    
    	[data-l10n-id="bookmarks-current-tab"]::before {
    		margin-top: 3px !important;	
    		margin-right: -15px !important;
    		margin-left: -1px !important;
    		content: '' !important;
    		display: block !important;
    		width: 16px !important;
    		height: 16px !important;
    		mask-image: url("../icons/new-window.svg") !important;
    		mask-repeat: no-repeat;
    		mask-position: center;
    		background-color: #e1e1e1 !important;
    	}
    
    	/* Dieses Lesezeichen bearbeiten…  */
    	#panelMenuBookmarkThisPage { list-style-image: url("../icons/bookmark-hollow_2.svg"); }
    	/* Lesezeichen durchsuchen */
    	#panelMenu_searchBookmarks { list-style-image: url("../icons/find.svg"); }
    	/* Lesezeichen-Symbolleiste ausblenden */
    	#panelMenu_viewBookmarksToolbar { list-style-image: url("../icons/bookmarks-toolbar.svg"); }
    	/* Lesezeichen verwalten */
    	#panelMenu_showAllBookmarks { list-style-image: url("../icons/bookmarks-tray.svg"); } 
    
    	/*= Panel - Chonik ===========================================================*/
    	/*= Panel - History ==========================================================*/
      
    	/* Kürzlich geschlossene Tabs */
    	#appMenuRecentlyClosedTabs { list-style-image: url("../icons/tab.svg"); }
    	/* Kürzlich geschlossene Fenster */
    	#appMenuRecentlyClosedWindows { list-style-image: url("../icons/popup.svg"); }
    	/* Vorherige Sitzung wiederherstellen */
    	#appMenu-restoreSession{ list-style-image: url("../icons/restore-session.svg"); }
    	/* Neueste Chronik löschen ... */
    	#appMenuClearRecentHistory { list-style-image: url("../icons/forget.svg"); }
    	/* Chronik verwalten */
    	#PanelUI-historyMore { list-style-image: url("../icons/history_2.svg"); }
    	/* Alle Tabs wieder öffnen */
    	#appMenu-library-recentlyClosedTabs { list-style-image: url("../icons/movetowindow-16.svg"); }
    	/* Alle Fenster wieder öffnen */
    	#appMenu-library-recentlyClosedWindows { list-style-image: url("../icons/restore-session.svg"); }
    	/* Chronik durchsuchen */
    	#appMenuSearchHistory { list-style-image: url("../icons/document-search.svg"); }
    
    	/*= Panel - More tools =======================================================*/
      
    	/* Symbolleiste anpassen ... */
    	#appmenu-moreTools-button { list-style-image: url("../icons/Themes.svg"); }
    	/* Werkzeuge für Web-... */
    	#appmenu-developer-tools-view .subviewbutton:nth-child(1) { list-style-image: url("../icons/developer.svg"); }
    	/* Task Manager */
    	#appmenu-developer-tools-view .subviewbutton:nth-child(2) { list-style-image: url("../icons/performance.svg"); }
    	/* Externes Debugging - Edge bug.svg */
    	#appmenu-developer-tools-view .subviewbutton:nth-child(3) { list-style-image: url("../icons/bug.svg"); }
    	/* Browser-Werkzeuge - Edge webdeveloper.svg */
    	#appmenu-developer-tools-view .subviewbutton:nth-child(4) { list-style-image: url("../icons/window-dev-tools.svg"); }
    	/* Browser-Inhaltswerkzeuge */
    	#appmenu-developer-tools-view .subviewbutton:nth-child(5) { list-style-image: url("../icons/command-frames.svg"); }
    	/* Browser-Konsole */
    	#appmenu-developer-tools-view .subviewbutton:nth-last-child(5) { list-style-image: url("../icons/command-console.svg"); }
    	/* Bildschirmgrößen testen */
    	#appmenu-developer-tools-view .subviewbutton:nth-last-child(4) { list-style-image: url("../icons/command-responsivemode.svg"); }
    	/* Farbpipette */
    	#appmenu-developer-tools-view .subviewbutton:nth-last-child(3) { list-style-image: url("../icons/command-eyedropper.svg"); }
    	/* Seitenquelltext anzeigen - Edge file-search.svg */
    	#appmenu-developer-tools-view .subviewbutton:nth-last-child(2) { list-style-image: url("../icons/document-search.svg"); }
    	/* Erweiterungen für Entwickler */
    	#appmenu-developer-tools-view .subviewbutton:nth-last-child(1) { list-style-image: url("../icons/debugging-addons.svg"); }
      
    	/*= Panel - Help =============================================================*/
      
    	/* Hilfe erhalten */  
    	#appMenu_menu_openHelp { list-style-image: url("../icons/help.svg"); }
    	/* Ideen und Feedback teilen ... */
    	#appMenu_feedbackPage { list-style-image: url("../icons/send.svg"); }
    	/* Fehlerbehebungsmodus ... */
    	#appMenu_helpSafeMode { list-style-image: url("../icons/debugging-workers.svg"); }
    	/* Weitere Informationen zur ... */
    	#appMenu_troubleShooting { list-style-image: url("../icons/more.svg"); }
    	/* ?? Eine Glühbirne ?? */
    	#appMenu_help_reportSiteIssue { list-style-image: url("../icons/lightbulb.svg"); }
    	/* Betrügerische Website melden ... */
    	#appMenu_menu_HelpPopup_reportPhishingtoolmenu { list-style-image: url("../icons/warning.svg"); }
    	/* Zu einem neuen Gerät wechseln */
    	#appMenu_helpSwitchDevice { list-style-image: url("../icons/send-to-device.svg"); }
    	/* Über Firefox */
    	#appMenu_aboutName { list-style-image: url("../icons/firefox.svg"); }
    
    	/* ================================================================================================== */
    
    	/*Abstände für alle Icons im Kontextmenü*/
    	
    	menupopup:not(.in-menulist) > menu:not(.menu-iconic),
    	menupopup:not(.in-menulist, [aria-label]) > menuitem:not(.menuitem-iconic, [checked="true"]) {
    		padding-inline-start: calc(1em + 24px) !important;
    		background-position: left 1em center;
    		background-repeat: no-repeat;
    		background-size: 16px;
    		-moz-context-properties: fill, fill-opacity;
    		fill: #E0E0E0 !important;
    
    	}
    	/*	
    	menu[_moz-menuactive="true"][disabled="true"],
    	menuitem[_moz-menuactive="true"][disabled="true"] { */
    	/*
    	:is(menu,menuitem)[_moz-menuactive="true"][disabled="true"] {
    		background-color: #5C5C5C !important;
    		border-radius: 4px !important;
    	}	
    	*/
    	#context-savepage { background-image: url("../icons/save.svg"); }
    	#context-pocket { background-image: url("../icons/pocket-outline.svg"); }
    	#context-selectall { background-image: url("../icons/select-all-on.svg"); }
    	#context-take-screenshot { background-image: url("../icons/screenshot.svg"); }
    	#context-viewsource { background-image: url("../icons/document-search.svg"); }
    	#context-inspect-a11y { background-image: url("../icons/tool-accessibility.svg"); }
    	#context-inspect { background-image: url("../icons/command-pick.svg"); }
    	#context-copy { background-image: url("../icons/edit-copy.svg"); }
    
    	#context-searchselect { background-image: url("../icons/find.svg"); }
    	#context-viewpartialsource-selection { background-image: url("../icons/document-search.svg"); }
    
    	#context-openlinkincurrent { background-image: url("../icons/link-square.svg"); }
    	#context-openlinkintab { background-image: url("../icons/new-window.svg"); }
    	#context-openlink { background-image: url("../icons/popup.svg"); }
    	#context-openlinkprivate { background-image: url("../icons/privateBrowsing.svg"); }
    	#context-bookmarklink { background-image: url("chrome://browser/skin/save.svg"); }
    	#context-savelink { background-image: url("../icons/image-add.svg"); }
    	#context-print-selection { background-image: url("../icons/printer.svg"); }
    
    	#context-savelinktopocket { background-image: url("../icons/image.svg"); }
    	#context-copylink { background-image: url("../icons/link.svg"); }
    	#context-reloadimage { background-image: url("../icons/reload_2.svg"); }
    	#context-viewimage { background-image: url("../icons/image-add.svg"); }
    	#context-saveimage { background-image: url("../icons/image.svg"); }
    	#context-copyimage-contents  { background-image: url("../icons/image-copy.svg"); }
    	#context-copyimage { background-image: url("../icons/resize-image.svg"); }
    	#context-sendimage { background-image: url("../icons/link.svg"); }
    	#context-setDesktopBackground { background-image: url("../icons/resize-image.svg"); }
    
    	#_36bde3a5-9f17-4ad9-a587-d4a3c8e8d200_-menuitem-_background-tab_link { background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAACcklEQVRYR8WWzVEbQRBGtRHYHHy2iAAIgEJkIEdgcfbBEAEiAhcXrogITAbI5QAMVQ5gdfYBiEB8b6uHaq1md2ZXBk3VlHa0/fOmu6dni8GWR7Fl/4NWgOVyeSvAz5rHRVE8xWAls6//P7h3C8mWuRtLASzN0L2HkNOPWn/XnGgOI86QnwnkMgWSC4CdCkKTHf/UBCI1iMQXgaAbHV0AMIBBv+OF1qQJB7wDamwzpIXUnQgCubXRFcAbuJDRacyopYh3pIkBBHW0Fom+AHMZIx2tQyATCVybUCmd3bpCXwDsUGQnGRBE4tzkSMXM62wCkAVh6SglTE3cC+DgfwJgiyqPFlhwJIhTPf+w9a7vE6kIUDR7iTA3FqMDGOn5ztYU4zy8SwFwrDj3TeOp7Yx7JUUhNLUV4He7CzYGkIGhdsS9kDMe/N1hhfhoit0iYJcN+ctpvR5upsUZILJBd6R9MzrVALv+08N5ALkRwEQAwHzlT61X0p4qwql0QhO50PM8J/6SmQSH+j3U/G16FZC3kQIoJUzef0lxlOl8UMv5P+l9Mt2D+qlJAUSPTg6IIIjWkZO9lHMa0spoBJABdhxtHpkAPn1/SYU/GcFGG0Bj+8wE8Bv4JudXMb02gNCGn6Xc9QhWvlzz4a7gJlz7rnwFsMLhqEBO+x0acTR3mVGYSa46fhqlzbl+sVnBeAAvHOzzybUfI88EIHJEst5BXzflAULF4xRaFKd9nQdAiyz1RFSZwHCJ7dQj0PvI5UQDGcFM9VM1ttARYxEgR8y3GCMZZUYBCHvubbcp3EIRGNZTQH44Lm8NQY2NQ0t+tw+SppBtHeAFE7gPMJeICC4AAAAASUVORK5CYII="); }
    
    	/* Rückgängig */
    	#context-undo { background-image: url("../icons/undo.svg"); }
    	/* Wiederherstellen */
    	#context-redo{ background-image: url("../icons/sync.svg"); }
    	/* Ausschneiden */
    	#context-cut { background-image: url("../icons/edit-cut.svg"); }
    	/* Kopieren */
    	#context-copy { background-image: url("../icons/copy.svg"); }
    	/* Einfügen */
    	#context-paste { background-image: url("../icons/paste.svg"); }
    	/* Löschen */
    	#context-delete { background-image: url("../icons/delete_2.svg"); }
    	/* Alles auswählen */
    	#context-selectall { background-image: url("../icons/select-all-on.svg"); }
    	/* Rechtschreibung prüfen */
    	#spell-check-enabled { background-image: url("../icons/spell-check.svg"); }
    
    
    	/* ----------------------------------------- */
    	/* --------- Kontextmenüs der Tabs --------- */
    	/* ----------------------------------------- */
    
    	/* Neuer Tab */
    	#context_openANewTab { background-image: url("../icons/new-window.svg"); }
    	/* Tab neu laden */
    	#context_reloadTab { background-image: url("../icons/reload_2.svg"); }
    	/* Tab stummschalten */
    	#context_toggleMuteTab { background-image: url("../icons/audio-muted.svg"); }
    	/* Stummschaltung für Tab aufheben */
    	#context_toggleMuteTab[muted] { background-image: url("../icons/audio.svg"); }
    	/* Tab anheften */
    	#context_pinTab { background-image: url("../icons/glyph-pin-16.svg"); }
    	/* Tab klonen */
    	#context_duplicateTab { background-image: url("../icons/duplicat.svg"); }
    	/* Tab als Lesezeichen hinzufügen */
    	#context_bookmarkTab { background-image: url("../icons/bookmark-hollow_2.svg"); }
    	/* Tab verschieben */
    	#context_moveTabOptions { background-image: url("../icons/arrow-swap.svg"); }
    	
    		/* <<< Submenu_Tab verschieben >>> */	
    	
    		/* An Anfang verschieben */
    		#context_moveToStart { background-image: url("../icons/back.svg"); }
    		/* An Ende verschieben */
    		#context_moveToEnd { background-image: url("../icons/forward.svg"); }
    		/* In neues Fenster verschieben */
    		#context_openTabInWindow { background-image: url("../icons/restore-session.svg"); }	
    	
    	/* Teilen */
    	.share-tab-url-item { display: none; }
    	/* Alle Tabs auswählen */
    	#context_selectAllTabs { background-image: url("../icons/tab-multiple.svg"); }
    	/* Tab schließen */
    	#context_closeTab { background-image: url("../icons/stop.svg"); }
    	/*Mehrere Tabs schließen */
    	#context_closeTabOptions { background-image: url("../icons/close-more.svg"); }
    
    		/* <<< Submenu_Mehrere Tabs schließen >>> */
    		
    		/* Linke Tabs schließen */
    		#context_closeTabsToTheStart { background-image: url("../icons/Sidebar-left.svg"); }
    		/* Rechte Tabs schließen */
    		#context_closeTabsToTheEnd { background-image: url("../icons/Sidebar-right.svg"); }
    		/* Andere Tabs schließen */
    		#context_closeOtherTabs { background-image: url("../icons/right-left.svg"); }		
    	
    	/* Geschlossenen Tab wieder öffnen */
    	#context_undoCloseTab { background-image: url("../icons/undo.svg"); }
    
    	/* ================================================================ */
    
    	/* Neuer Tab */
    	#toolbar-context-openANewTab { background-image: url("../icons/new-window.svg"); }
    	/* Ausgewählten Tab neu laden */
    	#toolbar-context-reloadSelectedTab { background-image: url("../icons/reload_2.svg"); }
    	/* Ausgewählten Tab als Lesezeichen hinzufügen... */
    	#toolbar-context-bookmarkSelectedTab { background-image: url("../icons/bookmark-hollow_2.svg"); }
    	/* Alle Tabs auswählen */
    	#toolbar-context-selectAllTabs { background-image: url("../icons/tab-multiple.svg"); }
    
    	/* Geschlossene Tabs wieder öffnen */
    	#toolbar-context-undoCloseTab { background-image: url("../icons/undo.svg"); }
    
    	/* Symbolleiste anpassen... */
    	menuitem.viewCustomizeToolbar { background-image: url("../icons/customize.svg"); }
    
    	/* Lesezeichen-Symbolleiste */
    	#toggle_PersonalToolbar { background-image: url("../icons/bookmarks-toolbar.svg"); }
    
    	/* --------------------------------------------- */
    	/* - Kontextmenüs der Lesezeichen-Symbolleiste - */
    	/* --------------------------------------------- */
    
    	/* Löschen */
    	#placesContext_delete { background-image: url("../icons/delete_2.svg"); }
    	/* Ausschneiden */
    	#placesContext_cut { background-image: url("../icons/edit-cut.svg"); }
    	/* Kopieren */
    	#placesContext_copy { background-image: url("../icons/edit-copy.svg"); }
    	/* Einfügen */
    	#placesContext_paste, #placesContext_paste_group { background-image: url("../icons/edit-paste.svg"); }
    
    	/* Alle Lesezeichen öffnen */
    	#placesContext_openBookmarkContainer\:tabs { background-image: url("../icons/movetowindow-16.svg"); }
    	/* Lesezeichen hinzufügen... */
    	#placesContext_new\:bookmark { background-image: url("../icons/bookmark-hollow_2.svg"); }
    	/* Ordner hinzufügen... */
    	#placesContext_new\:folder { background-image: url("../icons/folder_2.svg"); }
    	/* Trennlinie hinzufügen... */
    	#placesContext_new\:separator { background-image: url("../icons/vertical-line.svg"); }
    
    	/* Lesezeichen verwalten */
    	#placesContext_showAllBookmarks { background-image: url("../icons/bookmarks-tray.svg"); }
    	/* In neuem Tab öffnen */
    	#placesContext_open\:newtab { background-image: url("../icons/new-window.svg"); }
    	/* In neuem Fenster öffnen */
    	#placesContext_open\:newwindow { background-image: url("../icons/popup.svg"); }
    	/* In neuem privaten Fenster öffnen */
    	#placesContext_open\:newprivatewindow { background-image: url("../icons/privateBrowsing.svg"); }
    
    	/* Lesezeichen bearbeiten... */
    	#placesContext_show_bookmark\:info { background-image: url("../icons/edit.svg"); }
    	/* Lesezeichen löschen */
    	#placesContext_deleteBookmark { background-image: url("../icons/delete_2.svg"); }
    
    	/* ------------------------------------------ */
    	/* ------- Kontextmenüs der Menuleise ------- */
    	/* ------------------------------------------ */
    
    	/* In Überhangmenü verschieben */
    	.customize-context-moveToPanel { background-image: url("../icons/glyph-pin-16.svg"); }
    	/* Aus Symbolleiste entfernen */
    	.customize-context-removeFromToolbar { background-image: url("../icons/delete_2.svg"); }
    
    	/* --------------------------------------------- */
    	/* ------- Kontextmenüs in der Menuleise ------- */
    	/* --------------------------------------------- */
    
    	/* --- Datei --- */
    
    	/* Neuer Tab */
    	#menu_newNavigatorTab { background-image: url("../icons/new-window.svg"); }
    	/* Neues Fenster */
    	#menu_newNavigator { background-image: url("../icons/popup.svg"); }
    	/* Neues privates Fenster */
    	#menu_newPrivateWindow { background-image: url("../icons/privateBrowsing.svg"); }
    	/* Datei öffnen... */
    	#menu_openFile { background-image: url("../icons//open.svg"); }
    	/* Seite speichern unter... */
    	#menu_savePage { background-image: url("../icons/save.svg"); }
    	/* Link per E-Mail senden... */
    	#menu_sendLink { background-image: url("../icons/mail.svg"); }
    	/* Drucken... */
    	#menu_print { background-image: url("../icons/printer.svg"); }
    	/* Daten aus einem anderen Browser importieren... */
    	#menu_importFromAnotherBrowser { background-image: url("../icons/import.svg"); }
    	/* Offline arbeiten */
    	#goOfflineMenuitem { background-image: url("../icons/plug-disconnected.svg"); }
    	/* Beenden */
    	#menu_FileQuitItem { background-image: url("../icons/quit.svg"); }
    
    	/* --- Bearbeiten --- */
    
    	/* Rückgängig */
    	#menu_undo { background-image: url("../icons/undo.svg"); }
    	/* Wiederherstellen */
    	#menu_redo { background-image: url("../icons/sync.svg"); }
    	/* Ausschneiden */
    	#menu_cut { background-image: url("../icons/edit-cut.svg"); }
    	/* Kopieren */
    	#menu_copy { background-image: url("../icons/copy.svg"); }
    	/* Einfügen */
    	#menu_paste { background-image: url("../icons/paste.svg"); }
    	/* Löschen */
    	#menu_delete { background-image: url("../icons/delete_2.svg"); }
    	/* Alles auswählen */
    	#menu_selectAll { background-image: url("../icons/select-all-on.svg"); }
    	/* Seite durchsuchen... */
    	#menu_find { background-image: url("../icons/find.svg"); }
    
    	/* --- Ansicht --- */
    
    	/* Symbolleisten */
    	#viewToolbarsMenu { background-image: url("../icons/toolbar.svg"); }
    	
    		/* <<< Submenu_Symbolleisten >>> */
    		
    		#toggle_PersonalToolbar { background-image: url("../icons/bookmarks-toolbar.svg"); }
    		#menu_customizeToolbars { background-image: url("../icons/Themes.svg"); }
    
    		/* ----------------------------------- */
    		/* -- Checkbox und Haken im Submenu -- */
    		/* ----------------------------------- */
    
    		menuitem[checked="true"] > .menu-iconic-left {
    			list-style-image: url("../icons/check.svg");
    			fill: #00E400 !important;
    		}
    
    		[data-l10n-id="toolbar-context-menu-bookmarks-toolbar-always-show-2"]:not([checked="true"]),
    		[data-l10n-id="toolbar-context-menu-bookmarks-toolbar-on-new-tab-2"]:not([checked="true"]),
    		[data-l10n-id="toolbar-context-menu-bookmarks-toolbar-never-show-2"]:not([checked="true"]),
    		#menu_zoomReset:not([checked="true"]),
    		#toggle_zoom:not([checked="true"]),
    		#menu_pageStylePersistentOnly:not([checked="true"]) {
    			background-image: url("../icons/square.svg");
    			background-repeat: no-repeat;
    		}
    
    		/* ----------------------------------- */
    
    	/* Sidebar */
    	#viewSidebarMenuMenu { background-image: url("../icons/Dock Side Left.svg"); }
    
    		/* <<< Submenu_Sidebar >>> */
    		
    		#menu_bookmarksSidebar:not([checked="true"]) { 
    			background-image: url("../icons/bookmark.svg");
    			background-repeat: no-repeat;
    		} 
    		#menu_historySidebar:not([checked="true"]) { 
    			background-image: url("../icons/history_2.svg");
    			background-repeat: no-repeat; 
    		}
    		#menu_tabsSidebar:not([checked="true"]) { 
    			background-image: url("../icons/Dock Side Left.svg");
    			background-repeat: no-repeat; 
    		}
    
    	/* Zoom */
    	#viewFullZoomMenu { background-image: url("../icons/screenshot.svg"); }
    	
    		/* <<< Submenu_Zoom >>> */
    
    		#menu_zoomEnlarge { background-image: url("../icons/plus.svg"); }	/*  +  */
    		#menu_zoomReduce { background-image: url("../icons/minus.svg"); }	/*  -  */
    
    	/* Webseiten-Stil */
    	#pageStyleMenu { background-image: url("../icons/document-css.svg"); }
    	
    		/* <<< Submenu_Webseiten-Stil >>> */
    	
    		#menu_pageStyleNoStyle:not([checked="true"]) {
    			background-image: url("../icons/document-css.svg"); 
    			background-position: left 1em center;
    			background-repeat: no-repeat;
    		}	
    	
    	/* Textkodierung reparieren */
    	#repair-text-encoding { background-image: url("../icons/characterEncoding.svg"); }
    	/* Vollbild */
    	#fullScreenItem { background-image: url("../icons/fullscreen.svg"); }
    
    	/* --- Chronik --- */
    
    	/* Gesamte Chronik anzeigen */
    	#menu_showAllHistory { background-image: url("../icons/history_2.svg"); }
    	/* Neueste Chronik löschen... */
    	#sanitizeItem { background-image: url("../icons/forget.svg"); }
    	/* Vorherige Sitzung wiederherstellen */
    	#historyRestoreLastSession { background-image: url("../icons/restore-session.svg"); }
    	/* Chronik durchsuchen */
    	#menu_searchHistory { background-image: url("../icons/search-session.svg"); }
    	/* Kürzlich geschlossene Tabs */
    	#historyUndoMenu { background-image: url("../icons/tab.svg"); }
    	/* Kürzlich geschlossene Fenster */
    	#historyUndoWindowMenu { background-image: url("../icons/popup.svg"); }
    
    	/* Lesezeichen */
    
    	/* Lesezeichen verwalten */
    	#bookmarksShowAll { background-image: url("../icons/bookmarks-tray.svg"); }
    	/* Aktuellen Tab als Lesezeichen hinzufügen */
    	#menu_bookmarkThisPage { background-image: url("../icons/bookmark-hollow_2.svg"); }
    	/* Lesezeichen durchsuchen */
    	#menu_searchBookmarks { background-image: url("../icons/search.svg"); }
    	/* Lesezeichen-Symbolleiste */
    	#bookmarksToolbarFolderMenu { list-style-image: url("../icons/bookmarksToolbar.svg"); }
    	/* Weitere Lesezeichen */
    	#menu_unsortedBookmarks { list-style-image: url("../icons/mail-inbox-all.svg") }
    
    	/* --- Extras --- */
    
    	/* Downloads */
    	#menu_openDownloads { background-image: url("../icons/downloads.svg"); }
    	/* Add-ons und Themes */
    	#menu_openAddons { background-image: url("../icons/addon.svg"); }
    	/* Firefox View */
    	#menu_openFirefoxView { background-image: url("../icons/firefox.svg"); }
    	/* Anmelden */
    	#sync-setup { background-image: url("../icons/avatar-empty.svg"); }
    	/* Browser-Werkzeuge */
    	#browserToolsMenu { background-image: url("../icons/debugging-workers.svg"); }
    	
    		/* <<< Submenu_Browser-Werkzeuge >>> */	
    
    		/* Werkzeuge für Web-Entwickler */
    		#menu_devToolbox { background-image: url("../icons/developer.svg"); }
    		/* Task-Manager */
    		#menu_taskManager { background-image: url("../icons/performance.svg"); }
    		/* Externes Debugging */
    		#menu_devtools_remotedebugging { background-image: url("../icons/bug.svg"); }
    		/* Browser-Werkzeuge */
    		#menu_browserToolbox { background-image: url("../icons/window-dev-tools.svg"); }
    		/* Browser-Inhaltswerkzeuge */
    		#menu_browserContentToolbox { background-image: url("../icons/command-frames.svg"); }
    		/* Browser-Konsole */
    		#menu_browserConsole { background-image: url("../icons/command-console.svg"); }
    		/* Bildschirmgrößen testen */
    		#menu_responsiveUI { background-image: url("../icons/command-responsivemode.svg"); }
    		/*Farbpipette */
    		#menu_eyedropper { background-image: url("../icons/command-eyedropper.svg"); }
    		/* Seitenquelltext anzeigen */
    		#menu_pageSource { background-image: url("../icons/document-search.svg"); }
    		/* Erweiterungen für Entwickler */
    		#extensionsForDevelopers { background-image: url("../icons/debugging-addons.svg"); }	
    	
    	/* Seiteninformationen */
    	#menu_pageInfo { background-image: url("../icons/document-endnote.svg"); }
    	/* Einstellungen */
    	#menu_preferences { background-image: url("../icons/settings.svg"); }
    
    	/* --- Hilfe --- */
    
    	/* Hilfe erhalten */
    	#menu_openHelp { background-image: url("../icons/help.svg"); }
    	/* Ideen und Feedback teilen... */
    	#feedbackPage { background-image: url("../icons/send.svg"); }
    	/* Fehlerbehebungsmodus... */
    	#helpSafeMode { background-image: url("../icons/debugging-workers.svg"); }
    	/* Weitere Informationen zur Fehlerbehebung */
    	#troubleShooting { background-image: url("../icons/more.svg"); }
    	/* Betrügerische Website melden... */
    	#menu_HelpPopup_reportPhishingtoolmenu { background-image: url("../icons/warning.svg"); }
    	/* Zu einem neuen Gerät wechseln */
    	#helpSwitchDevice { background-image: url("../icons/send-to-device.svg"); }
    	/* Über Firefox */
    	#aboutName { background-image: url("../icons/firefox.svg"); }
    
    	/* ---------------------------------------------- */
    	/* ------------- Kontextmenü Frames ------------- */
    	/* ---------------------------------------------- */
    	
    	/* Aktueller Frame */
    	#frame { background-image: url("../icons/command-frames.svg"); }
    
    		/* <<< Submenu_Aktueller Frame >>> */	
    
    		/* Nur diesen Frame anzeigen */
    		#context-showonlythisframe { background-image: url("../icons/tab.svg"); }
    		/* Frame in neuem Tab öffnen */
    		#context-openframeintab { background-image: url("../icons/open-in-new.svg"); }
    		/* Frame in neuem Fenster öffnen */
    		#context-openframe { background-image: url("../icons/popup.svg"); }
    		/* Frame neu laden */
    		#context-reloadframe { background-image: url("../icons/reload_2.svg"); }
    		/*Lesezeichen für diesen Frame hinzufügen */
    		#context-bookmarkframe { background-image: url("../icons/bookmark-hollow_2.svg"); }
    		/*Frame speichern unter... */
    		#context-saveframe { background-image: url("../icons/save.svg"); }
    		/* Frame drucken... */
    		#context-printframe { background-image: url("../icons/printer.svg"); }
    		/* Bildschirmfoto aufnehmen */
    		#context-take-frame-screenshot { background-image: url("../icons/screenshot.svg"); }
    		/* Frame-Quelltext anzeigen */
    		#context-viewframesource { background-image: url("../icons/document-search.svg"); }
    		/* Frame-Informationen anzeigen */
    		#context-viewframeinfo { background-image: url("../icons/info.svg"); }
    
    	/* ---------------------------------------------- */
    	/* ----------- Kontextmenü Adressfeld ----------- */
    	/* ---------------------------------------------- */
    	/*	
    	#urlbar-input-container {
    		padding-inline-start: calc(1em + 24px) !important;
    		background-position: left 1em center;
    		background-repeat: no-repeat;
    		background-size: 16px;
    		-moz-context-properties: fill, fill-opacity;
    		fill: currentColor;
    	}
    	*/
    	/* Rückgängig */
    	[data-l10n-id="text-action-undo"] {
    		background-image: url("../icons/undo.svg");
    	}
    	/* Wiederherstellen */
    	[data-l10n-id="text-action-redo"] {
    		background-image: url("../icons/sync.svg");
    	}
    	/* Ausschneiden */
    	[data-l10n-id="text-action-cut"] {
    		background-image: url("../icons/edit-cut.svg");
    	}
    	/* Kopieren */
    	[data-l10n-id="text-action-copy"] {
    		background-image: url("../icons/copy.svg");
    	}
    	/* Einfügen */
    	[data-l10n-id="text-action-paste"] {	
    		background-image: url("../icons/paste.svg");
    	}
    	/* Einfügen & Los */
    	#paste-and-go {
    		background-image: url("../icons/redo.svg");
    	}
    	/* Löschen */
    	[data-l10n-id="text-action-delete"] {
    		background-image: url("../icons/delete_2.svg");
    	}
    	/* Alles auswählen */
    	[data-l10n-id="text-action-select-all"] {
    		background-image: url("../icons/select-all-on.svg");
    	}
    
    	/* ------------------------------------------- */
    	/* ---------- Symbole der Menuleise ---------- */
    	/* ------------------------------------------- */
    
    	/* Datei  */
    	#file-menu::before { background: url("../icons/mail-inbox-all.svg")!important; }
    	/* Bearbeiten  */
    	#edit-menu::before { background: url("../icons/edit.svg")!important; }
    	/* Ansicht  */
    	#view-menu::before { background: url("../icons/content-view.svg")!important; }
    	/* Chronik  */
    	#history-menu::before { background: url("../icons/history_2.svg")!important; }
    	/* Lesezeichen  */
    	#bookmarksMenu::before { background: url("../icons/bookmark.svg")!important; }
    	/* Extras  */
    	#tools-menu::before { background: url("../icons/toolbox.svg")!important; }
    	/* Hilfe  */
    	#helpMenu::before { background: url("../icons/help.svg")!important; }
    
    	/* Einstellungen  */
    	#file-menu::before,
    	#edit-menu::before,
    	#view-menu::before,
    	#history-menu::before,
    	#bookmarksMenu::before,
    	#tools-menu::before,
    	#helpMenu::before {
    		margin-left: 6px !important;
    		content: '' !important;
    		display: block !important;
    		width: 16px !important;
    		height: 16px !important;
    		background-repeat: no-repeat !important;
    		-moz-context-properties: fill, fill-opacity;
    		fill: currentColor;
    	}
    	#menu_FilePopup,
    	#menu_EditPopup,
    	#menu_viewPopup,
    	#historyMenuPopup,
    	#bookmarksMenuPopup,
    	#menu_ToolsPopup,
    	#menu_HelpPopup {
    		margin-top: 5px !important;
    	}
    
         /* ------------------------------------ */
         /* *** neuer Button "Erweiterungen" *** */
         /* ******* Symbole im Popup-Menü ****** */
         /* ------------------------------------ */
    
    	.unified-extensions-context-menu-pin-to-toolbar {   
    		background: url("../icons/glyph-pin-16.svg") no-repeat !important;
    		background-position: 9px 4px !important;
    	}
    	.unified-extensions-context-menu-move-widget-up {
    		background: url("../icons/Pfeil-hoch_hellgrau.svg") no-repeat !important;
    		background-position: 6px 0px !important;
    	}
    	.unified-extensions-context-menu-move-widget-down {   
    		background: url("../icons/Pfeil-runter_hellgrau.svg") no-repeat !important;
    		background-position: 6px 0px !important;
    	}
    	.unified-extensions-context-menu-manage-extension {
    		background: url("../icons/extension.svg") no-repeat !important;
    		background-position: 9px 4px !important;
    	}
    	.unified-extensions-context-menu-remove-extension {
    		background: url("../icons/delete_2.svg") no-repeat !important;
    		background-position: 9px 4px !important;
    	}
    	.unified-extensions-context-menu-report-extension {
    		background: url("../icons/warning.svg") no-repeat !important;
    		background-position: 9px 4px !important;
    	}
    
    	/* ---------------------------------------------- */
    	/* ------------- Kontextmenü Video -------------- */
    	/* ---------------------------------------------- */
    
    	/* Pause */
    	#context-media-pause { background-image: url("../icons/pause-1.svg"); }
    	/* Abspielen */
    	#context-media-play { background-image: url("../icons/play-1.svg"); }
    	/* Ton aus */
    	#context-media-mute { background-image: url("../icons/audio-16-mute.svg"); }
    	/* Ton an */
    	#context-media-unmute { background-image: url("../icons/audio-16.svg"); }
    	/* Geschwindigkeit */
    	#context-media-playbackrate { background-image: url("../icons/performance-16.svg"); }
    	/* Endlosschleife */
    	#context-media-loop { background-image: url("../icons/repeat-1.svg"); }
    	/* Vollbild */
    	#context-video-fullscreen { background-image: url("../icons/maximize-1.svg"); }
    	/* Vollbild beenden */
    	#context-leave-dom-fullscreen { background-image: url("../icons/minimize-1.svg"); }
    	/* Steuerung ausblenden	! */
    	#context-media-hidecontrols { display: none !important; }
    	/* Steuerung anzeigen	! */
    	#context-media-showcontrols { display: none !important; }
    
    	/* -------------------------- */
    
    	/* Video in neuem Tab öffnen */
    	#context-viewvideo { background-image: url("../icons/new-window.svg");; }
    	/* In Bild-im-Bild ansehen */
    	#context-video-pictureinpicture { background-image: url("../icons/info.svg"); }
    
    	/* -------------------------- */
    
    	/* Standbild aufnehmen…	! */
    	#context-video-saveimage { display: none !important; } 
    	/* Video speichern unter…	! */
    	#context-savevideo { display: none !important; }
    	/* Video-Adresse kopieren	! */
    	#context-copyvideourl { display: none !important; }
    	/* Video per E-Mail senden…	! */
    	#context-sendvideo { display: none !important; }
    
    	#context-sep-setbackground { display: none !important; }
    
    	.bookmark-item[container] {
    		list-style-image: url("../icons/folder-fat.svg") !important;
    	  }
    }
    Alles anzeigen
  • userChrome.js Scripte für den Fuchs (Diskussion)

    • Mira_Belle
    • 11. Juli 2024 um 19:58
    Zitat von mkpcxxl

    Hallo Freunde,

    benutze das Script Symbole.uc.js und bis jetzt hat es auch gut funktioniert.

    Seit geraumer Zeit (kann leider nicht mehr sagen seit wann, werden die Symbole im Kontext Menü der Adressleiste ausser dem Symbol für "Einfügen & Los" nicht mehr angezeigt. Vielleicht kann sich ja mal jemand das mal anschauen und mir sagen, was ich ändern muss, damit die Symbole wieder angezeigt werden.

    JavaScript
    ...


    Gruß

    mkpcxxl

    Alles anzeigen

    Die Frage wird hier geklärt werden.

    Beitrag

    RE: Symbole in den Kontextmenüs [ Update ]

    So, dann hier!

    Wie im anderen Thread schon beschrieben, funktionieren die Symbole für das Menü der Adressleiste nicht mehr!

    Ich bat, um Hilfe, irgendwie an die richtigen Selektoren zu kommen.

    Wenn ich im Inspektor danach suche und diese als CSS-Selektor kopiere,
    kommt so etwas dabei raus => menupopup.textbox-contextmenu:nth-child(3) > menuitem:nth-child(5)
    Wenn ich DAS durch z.B. #text-action-copy zu ersetzen funktioniert das selbst verständlich auch nicht.

    Es steht da: menuitem…
    Mira_Belle
    11. Juli 2024 um 19:56

    Das Script werde ich dann auch aktualisieren.


    Nachtrag!
    Erledigt, neues Skript und neue CSS sind vorhanden.

  • Symbole in den Kontextmenüs [ Update ]

    • Mira_Belle
    • 11. Juli 2024 um 19:56

    So, dann hier!

    Wie im anderen Thread schon beschrieben, funktionieren die Symbole für das Menü der Adressleiste nicht mehr!

    Ich bat, um Hilfe, irgendwie an die richtigen Selektoren zu kommen.

    Wenn ich im Inspektor danach suche und diese als CSS-Selektor kopiere,
    kommt so etwas dabei raus => menupopup.textbox-contextmenu:nth-child(3) > menuitem:nth-child(5)
    Wenn ich DAS durch z.B. #text-action-copy zu ersetzen funktioniert das selbst verständlich auch nicht.

    Es steht da: menuitem data-l10n-id="text-action-copy" cmd="cmd_copy" label="Kopieren" accesskey="K"

    Ich stehe auf'em Schlauch und weiß gerade nicht weiter.
    Bitte um Hilfe.

  • Ab ff 128 dünne Linie bei Findbar fehlt

    • Mira_Belle
    • 10. Juli 2024 um 23:28

    Schau mal, ob Du mit diesem Selektor was anfangen kannst.

    CSS
    .findbar-textbox {
      background-color: grey !important;
    
      color: red !important;
    
      border: 1px solid lime !important;
    
      border-radius: 4px !important;
    
      outline: none !important;
    
    }
    Alles anzeigen

    Ach und

    CSS
    .findbar-textbox:focus {
      background-color: grey !important;
    
      color: orange !important;
    
      border: 1px solid green !important;
    
      outline: none !important;
    
      box-shadow: none !important;
    
    }
    Alles anzeigen
  • Suche Selektor von Symbol in der Adressleiste

    • Mira_Belle
    • 9. Juli 2024 um 20:28
    Zitat von 2002Andreas

    Bei mir auch;)

    Also links dann nach Icons/Images in der Urlbar suchen.

    Also wenn ich so etwas wieder habe, das darüberliegende Element anklicken und dann
    Links so lange die Ebenen darunter durchsuchen, bis das gewünschte gefunden ist.

    Nahe liegend. Mpf.

  • Suche Selektor von Symbol in der Adressleiste

    • Mira_Belle
    • 9. Juli 2024 um 17:55

    :thumbup:

    Danke, das passt, nur wie bist Du daran gekommen?

    Bei mir ist der Button immer verschwunden, wenn ich das Fenster gewechselt habe.
    (Im Hintergrund der FF und vorne die Werkzeuge)

    Also noch mal vielen lieben Dank.

  • Suche Selektor von Symbol in der Adressleiste

    • Mira_Belle
    • 9. Juli 2024 um 16:50

    Wie schon in der Überschrift beschrieben, suche ich den Selektor eines Symbols in der Adresszeile.
    Es handelt sich um den keinen Pfeil.

    Egal, was ich auch versuche, ich komme einfach nicht dran.
    Eventuell stelle ich mich auch nur ungeschickt an. ¯\_(ツ)_/¯

  • Wiederherstellen eines versehentlich gelöschten Ordners

    • Mira_Belle
    • 8. Juli 2024 um 16:28

    Habe es gerade ausprobiert!

    Wie Sören schreibt, kannst Du jedes Lesezeichen per darg & drop von einer Bibliothek in die andere ziehen.

  • Wiederherstellen eines versehentlich gelöschten Ordners

    • Mira_Belle
    • 8. Juli 2024 um 14:56

    Und ich habe das Gefühl, mich rechtfertigen zu müssen!
    Das war die Antwort auf .DeJaVu.
    Und die Begründung, warum ich von einer falschen Annahme aus ging.

    Ist das nicht erkenntlich?

    Ich editiere mal den obigen Beitrag!
    Sage mir bitte, ob ich es so in Zukunft machen soll.
    Und danach kann ja "unsere" Konversation gelöscht werden, weil OT.

  • Wiederherstellen eines versehentlich gelöschten Ordners

    • Mira_Belle
    • 8. Juli 2024 um 14:20

    2002Andreas

    OH, ich bitte tausendmal um Entschuldigung wegen der falschen Interpretation seines Threads!

    Wenn ich meinen Irrtum eingesehen habe, und in einem weiteren Beitrag korrigiert habe,

    Zitat von Mira_Belle

    Wenn es aber wirklich um Lesezeichen, abgespeichert in der "places.sqlite" geht, sollte es auch gehen!
    Dann muss (kann man) ein neues Profil angelegt werden und die entsprechenden "places.sqlite" aus dem gesicherten
    Profil dorthin kopiert werden.
    Wenn er nun dieses Profil beim Starten des FF auswählt, sollte er die "alten" Lesezeichen inkl. des gelöschten Ordners wieder haben.

    Wenn alles geklappt hat, kann das "neue" Profil wieder über das FF-Menü gelöscht werden.


    warum in Gottesnamen muss dann immer noch mal "nachgetreten" werden?
    Verstehe ich nicht!

  • Wiederherstellen eines versehentlich gelöschten Ordners

    • Mira_Belle
    • 8. Juli 2024 um 13:08

    .DeJaVu Er schrieb von einem Ordner!
    Nicht von Lesezeichen innerhalb des Firefoxes.

    Zitat

    Ich brauche nur diesen einen Ordner!!

    @ALL

    Wenn es aber wirklich um Lesezeichen, abgespeichert in der "places.sqlite" geht, sollte es auch gehen!
    Dann muss (kann man) ein neues Profil angelegt werden und die entsprechenden "places.sqlite" aus dem gesicherten
    Profil dorthin kopiert werden.
    Wenn er nun dieses Profil beim Starten des FF auswählt, sollte er die "alten" Lesezeichen inkl. des gelöschten Ordners wieder haben.

    Wenn alles geklappt hat, kann das "neue" Profil wieder über das FF-Menü gelöscht werden.


    Zitat von Sören Hentzschel

    Man kann die Sicherung in ein neues Firefox-Profil einspielen, dann jeweils die Bibliothek öffnen und die Lesezeichen per Drag & Drop kopieren.

    Sorry, weniger Worte, habe ich überlesen.

  • Wiederherstellen eines versehentlich gelöschten Ordners

    • Mira_Belle
    • 8. Juli 2024 um 11:51

    Es sollte doch möglich sein aus einem Acronis Backup entweder per "copy & paste" einzelne Ordner zu kopieren,
    oder diese über das Programm wieder herstellen zu lassen.

    Per "copy & paste" kann ich sogar einzelne Dateien und Ordner an jedem anderen Ort meiner Laufwerke "wieder herstellen".
    Gerade eben selber ausprobiert.


    Im Explorer das Backup doppelt anklicken. Wird wohl eine "XXXX.tibx" sein.
    Es öffnet sich darauf ein weiteres Explorerfenster, dort das Backup auch wieder doppelt anklicken.
    Nun siehst Du eine LW-Strucktur, ich vermute das Du Deine "Lesezeichen irgendwo auf C:\ hast,
    Doppelklicken, und so durchhangeln, bis Du Deine "Lesezeichen" gefunden hast.
    Dann einfach diesen Ordner markieren und im anderen Explorerfenster an einen vorher ausgewählten "Platz" ablegen.
    Fertig.

  • Ehrentitel

    • Mira_Belle
    • 7. Juli 2024 um 23:40
    Zitat von startup

    ;) du hast die *INNEN vergessen :) (musste nun mal sein - hab dich auch lieb :love: )

    Immer mit dem Strom zu schwimmen, kann ja jeder. ;)
    :*

  • Übersetzen in Firefox für iOS?

    • Mira_Belle
    • 7. Juli 2024 um 22:12

    Oh, das wusste ich nicht! Dann hat sich das ja erledigt.

  • Übersetzen in Firefox für iOS?

    • Mira_Belle
    • 7. Juli 2024 um 22:08

    Er könnte eventuell ein JavaScript nutzen.

    Beitrag

    Re: TranslateGoogles.uc.js

    // Wer lieber mit Deepl übersetzen will:
    Hier ist eine Modifikation nicht nötig:
    Siehe weiter unten im Thread...

    (Quelltext, 35 Zeilen)

    Boersenfeger
    15. März 2019 um 12:07
  • Entwicklung Firefox

    • Mira_Belle
    • 7. Juli 2024 um 22:02
    Zitat von FuchsFan

    Das sind die gesicherten Dateien aus dem entpackten zip-Archiv , Größe 74MB aus aktuellem Nightly.


    Danke.

  • Wer mag testen? Firefox4backup

    • Mira_Belle
    • 7. Juli 2024 um 21:57

    Käse.
    Mit dieser Abänderung des Skripts zum Ausschließen einiger Unterordner der Profile
    kommt das Skript nie zum Ende.

    Code
    if ($HS.Action) {
        # Entferne führende und nachfolgende Leerzeichen und den führenden Backslash
        $basePath = $Textbox[0].Text.Trim().Replace('"', '')
        $subPath = $Textbox[1].Text.Trim().TrimStart('\')
        $LogPfad = Join-Path -Path $basePath -ChildPath $subPath
    
        # Sicherstellen, dass das Zielverzeichnis existiert
        if (!(Test-Path -Path $LogPfad)) {
            New-Item -ItemType Directory -Path $LogPfad -Force | Out-Null
        }
    
        $profileZip = Join-Path -Path $LogPfad -ChildPath "profile.zip"
    
        # Profilordner und auszuschließende Ordner
        $profileBasePath = "$env:appdata\Mozilla\Firefox\Profiles"
        $profiles = Get-ChildItem -Directory -Path $profileBasePath
        $excludeDirs = @("bookmarkbackups", "crashes", "minidumps", "saved-telemetry-pings","sessionstore-backups","shader-cache")
    
        # Kompression der Profile mit Ausschluss bestimmter Ordner
        $profilePaths = @()
        foreach ($profile in $profiles) {
            $profileDir = Join-Path -Path $profileBasePath -ChildPath $profile.Name
            $profileItems = Get-ChildItem -Path $profileDir -Recurse | Where-Object {
                $excludeDirs -notcontains $_.Parent.Name
            }
            $profilePaths += $profileItems
        }
        Compress-Archive -Path $profilePaths -DestinationPath $profileZip -CompressionLevel NoCompression
    
        if ($Checkbox[0].Checked) {
            $programZip = Join-Path -Path $LogPfad -ChildPath "program.zip"
            if (Test-Path $programZip) { Remove-Item -Force $programZip }
    
            Compress-Archive -Path "$env:ProgramFiles\Mozilla Firefox" -DestinationPath $programZip -CompressionLevel NoCompression
        }
    }
    Alles anzeigen

    Jemand eine bessere Idee?

Unterstütze uns!

Jährlich (2026)

69,4 %

69,4% (538,17 von 775 EUR)

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