stackoverflow

Clean up stackoverflow UI; removes jobs, chat, etc.

  1. // ==UserScript==
  2. // @name stackoverflow
  3. // @namespace https://lyler.xyz
  4. // @version 0.1
  5. // @description Clean up stackoverflow UI; removes jobs, chat, etc.
  6. // @author Lyle Hanson
  7. // @match https://stackoverflow.com/*
  8. // @grant none
  9. // ==/UserScript==
  10.  
  11. (function() {
  12. 'use strict';
  13. document.getElementById('hireme').style = 'display: none;';
  14. document.getElementById('chat-feature').style = 'display: none;';
  15. document.getElementById('newsletter-ad').style = 'display: none;';
  16. })();