|
To disable embedded sounds, add this to your userContent.css if you're using firefox:
embed[src*=?.mid?] { display: none !important }
embed[src*=?.mp2?] { display: none !important }
embed[src*=?.mp3?] { display: none !important }
embed[src*=?.mp4?] { display: none !important }
embed[src*=?.wav?] { display: none !important }
the userContent.css's file path will be similar to this path in windows:
c:\documents and settings\username\application data\mozilla\firefox\??yourprofile??\chrome\userCo ntent.css
|