Remove "Focus On" Section

Removes the element that features celebrities from the Criticker homepage.

  1. // ==UserScript==
  2. // @name Remove "Focus On" Section
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.0.2
  5. // @description Removes the element that features celebrities from the Criticker homepage.
  6. // @author Alsweider
  7. // @match https://www.criticker.com/
  8. // @icon https://www.criticker.com/favicon.ico
  9. // @grant none
  10. // @license MIT
  11. // ==/UserScript==
  12.  
  13. (function() {
  14. 'use strict';
  15.  
  16. //Search & remove element with the ID "rc_focus"
  17. var focusSection = document.getElementById('sb_focus');
  18. if (focusSection) {
  19. focusSection.remove();
  20. }
  21. })();