Greasy Fork is available in English.

SFGate

Get rid of annoying flying Flash video thing.

  1. // ==UserScript==
  2. // @name SFGate
  3. // @namespace www.sfgate.com
  4. // @description Get rid of annoying flying Flash video thing.
  5. // @include http://www.sfgate.com/*
  6. // @version 1
  7. // @grant none
  8. // ==/UserScript==
  9. var divs = document.getElementsByClassName('vembaDynamicLoad');
  10. if (divs) {
  11. var node = divs[0];
  12. node.parentNode.removeChild(node);
  13. }