Hide Github Recommended for you

Hide Github Recommened Followers

  1. // ==UserScript==
  2. // @name Hide Github Recommended for you
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.1
  5. // @description Hide Github Recommened Followers
  6. // @author Harisankar P S
  7. // @match https://github.com
  8. // @icon data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw
  9. // @license MIT
  10. // @grant none
  11. // ==/UserScript==
  12.  
  13. (function() {
  14. 'use strict';
  15. console.log('testing');
  16. setInterval(function () {
  17. [... document.querySelectorAll('h5')].filter(el => el.textContent.includes('Recommended based on people you follow')).forEach(function(i) { i.parentElement.parentElement.remove() });
  18. }, 1000);
  19.  
  20. })();