No more GitHub notifications

GitHub notifications are overwhelming in large organizations with 100+ repositories.

  1. // ==UserScript==
  2. // @name No more GitHub notifications
  3. // @namespace http://tampermonkey.net/
  4. // @version v1.0.0
  5. // @description GitHub notifications are overwhelming in large organizations with 100+ repositories.
  6. // @author mxt-mischa
  7. // @match https://github.com/*
  8. // @icon https://www.google.com/s2/favicons?sz=64&domain=github.com
  9. // @license AGPL-3.0
  10. // @grant GM_addStyle
  11. // @run-at document-start
  12. // ==/UserScript==
  13.  
  14. const css = `
  15. notification-indicator {
  16. display: none !important;
  17. }
  18. `;
  19.  
  20. GM_addStyle(css);

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址