// ==UserScript== // @name Francis Matthews // @namespace http://hi.baidu.com/fmatthews78 // @description Remove Advertisement from My Yahoo Page // @include http://*my.yahoo.com/* // ==/UserScript== function removeElem(elem) { if (elem) elem.parentNode.removeChild(elem); } (function () { removeElem(document.getElementById('lrc')); }());