1. // ==UserScript==
  2. // @name BBC No Featured Section
  3. // @namespace BBC
  4. // @description Hide the featured section on the new bbc.co.uk
  5. // @include http://www.bbc.co.uk/
  6. // ==/UserScript==
  7. document.getElementById("hpFeatureBox").style.display = "none";
  8. document.getElementById("hpColTwo").className = "hpCol hpCol-first";
  9. document.getElementById("hpColThree").className = "hpCol hpCol-first";