Created
March 19, 2019 09:14
-
-
Save nightscape/029f813b4afcf0a7f544176def523787 to your computer and use it in GitHub Desktop.
Removes Github notifications (to reduce distraction)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ==UserScript== | |
| // @name Remove Github notifications | |
| // @namespace Violentmonkey Scripts | |
| // @require http://ajax.googleapis.com/ajax/libs/jquery/2.1.0/jquery.min.js | |
| // @match https://github.com/* | |
| // @grant GM_addStyle | |
| // ==/UserScript== | |
| //- The @grant directive is needed to restore the proper sandbox. | |
| $(".notification-indicator").remove(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment