// ==UserScript== // @name SFGate // @namespace www.sfgate.com // @description Get rid of annoying flying Flash video thing. // @include http://www.sfgate.com/* // @version 1 // @grant none // @downloadURL https://update.greasyfork.icu/scripts/22638/SFGate.user.js // @updateURL https://update.greasyfork.icu/scripts/22638/SFGate.meta.js // ==/UserScript== var divs = document.getElementsByClassName('vembaDynamicLoad'); if (divs) { var node = divs[0]; node.parentNode.removeChild(node); }