StackExchange: No Hot Questions

Hide hot network questions from StackExchange network

  1. // ==UserScript==
  2. // @name StackExchange: No Hot Questions
  3. // @namespace http://blaisorblade.github.io/sx-no-hot
  4. // @version 0.1
  5. // @description Hide hot network questions from StackExchange network
  6. // @author Blaisorblade
  7. // @match https://*.stackexchange.com/*
  8. // @match https://stackoverflow.com/*
  9. // @match https://superuser.com/*
  10. // @match https://serverfault.com/*
  11. // @match https://mathoverflow.net/*
  12. // @match https://askubuntu.com/*
  13. // @match https://stackapps.com/*
  14. // @grant none
  15. // ==/UserScript==
  16.  
  17. (function() {
  18. 'use strict';
  19. $("#hot-network-questions").hide();
  20. })();