Gibt es eine Möglichkeit bei Firefox das Lautsprechersymbol auf Audio-wiedergebenden Tabs zu deaktivieren?

1 Antwort

Vom Beitragsersteller als hilfreich ausgezeichnet

In Firefox lässt sich das Lautsprechersymbol auf Tabs, die Audio wiedergeben, nicht über die normalen Einstellungen deaktivieren. Allerdings kannst du es mit einer Anpassung der Datei userChrome.css ausblenden.

So geht's:

1. Benutzerprofilordner öffnen:

  - Gib in die Adressleiste about:support ein und drücke Enter.

  - Klicke bei „Profilordner“ auf „Ordner öffnen“.

2. Ordnerstruktur anlegen:

  - Erstelle im Profilordner einen neuen Ordner namens chrome (falls nicht vorhanden).

  - Erstelle in diesem Ordner eine Datei namens userChrome.css.

3. CSS-Code hinzufügen:

  - Öffne userChrome.css mit einem Texteditor und füge folgenden Code ein:

   

   @namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");

   .tab-icon-overlay[soundplaying],

   .tab-icon-overlay[muted],

   .tab-icon-overlay[activemedia-blocked],

   .tab-icon-sound {

    display: none !important;

   }

   

4. Firefox neu starten:

  - Schließe und starte Firefox neu, damit die Änderungen wirksam werden.

Quelle ChatGPT


gufrastella  14.06.2025, 12:51

Die css muss Folgendes beinhalten vor dem neuen Code (die @import-Befehle):

/*AGENT_SHEET*/		/************************************/	/****** simpleMenuWizard START ******/		/**********************************************	   Modify these files themselves to your needs.	   Do not modify the following @import block.	   **********************************************/		/*** When right-clicking on... ***/	@import url("./simpleMenuWizard/blank-context.css");      /* ...a blank area on a webpage                    */	@import url("./simpleMenuWizard/frame-context.css");      /* ...an iframe                                    */	@import url("./simpleMenuWizard/image-context.css");      /* ...an image                                     */	@import url("./simpleMenuWizard/input-context.css");      /* ...an input-field                               */	@import url("./simpleMenuWizard/link-context.css");       /* ...a link                                       */	@import url("./simpleMenuWizard/main-hamburger.css");     /* Leftclick the hamburger menu on top right       */	@import url("./simpleMenuWizard/main-menubar.css");       /* Leftclick on main menubar (open with ALT key)   */	@import url("./simpleMenuWizard/media-context.css");      /* ...media like audio or html5 video              */	@import url("./simpleMenuWizard/select-context.css");     /* ...selected text or selected object             */	@import url("./simpleMenuWizard/sidebar-context.css");    /* ...items in bookmarks- or history sidebar       */	@import url("./simpleMenuWizard/sidebar-header.css");     /* Leftclick on sidebar header                     */	@import url("./simpleMenuWizard/source-context.css");     /* ...a blank area when viewing source code        */	@import url("./simpleMenuWizard/tab-context.css");        /* ...a tab                                        */	@import url("./simpleMenuWizard/toolbar-context.css");    /* ...the toolbar or tabbar                        */	@import url("./simpleMenuWizard/urlbar-context.css");     /* ...the addressbar                               */			/*** Options ***/		/**********************************************************	   How to activate or deactivate the following options:	   Remove '/*' at the beginning of a line (not comment line) to activate the option	   Add '/*' at the beginning of the line (not comment line) to deactivate the option	   **********************************************************/		/*** Hide all "Send <item> to Device" entries ***/	/* @import url("./simpleMenuWizard/opt_noSendToDevice.css");		/*** Hide all inactive menu items ***/	/* #mainPopupSet menuitem[disabled="true"] { display: none !important; }		/****** simpleMenuWizard END ******/	/**********************************/