NoBGSOUND

By Xuleun Last update Nov 25, 2005 — Installed 700 times. Daily Installs: 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0
// ==UserScript==
// @name           NoBGSOUND
// @description    Delete all the BGSOUND elements
// @include        *
// ==/UserScript==

if (document.getElementsByTagName("bgsound")) {
document.body.innerHTML+="<style>bgsound {display:none}</style>";
}