Skip to content

Instantly share code, notes, and snippets.

@ozh
Created February 15, 2026 11:37
Show Gist options
  • Select an option

  • Save ozh/49a6bf7189eee15ca725a659fc73aae3 to your computer and use it in GitHub Desktop.

Select an option

Save ozh/49a6bf7189eee15ca725a659fc73aae3 to your computer and use it in GitHub Desktop.
Firefox custom chrome CSS : disable audio icon on tabs
  1. In about:config turn toolkit.legacyUserProfileCustomizations.stylesheets to true

  2. Open folder %APPDATA%\Mozilla\Firefox\Profiles\, find one or more folders and go to the folder that has a lot of other folders.

  3. Create a new folder named chrome and in that folder create file userChrome.css

.tab-audio-button {
    pointer-events: none !important;
}

This makes Firefox tabs audio icon not clickable.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment