GitHub: Hide "Following" button

Hide "Following" feed button on GitHub

  1. // ==UserScript==
  2. // @name GitHub: Hide "Following" button
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.2
  5. // @description Hide "Following" feed button on GitHub
  6. // @author Maciek Sitkowski
  7. // @match https://github.com/
  8. // @icon https://www.google.com/s2/favicons?sz=64&domain=github.com
  9. // @license MIT
  10. // @grant none
  11. // ==/UserScript==
  12.  
  13. (function() {
  14. 'use strict';
  15.  
  16. document.querySelector('#feed-original')?.parentElement?.remove();
  17. })();