Last active
June 12, 2021 16:59
-
-
Save cketti/75ced90e6ee6605effd9f749b01ce612 to your computer and use it in GitHub Desktop.
No unread GitHub notifications
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 No unread GitHub notifications | |
// @namespace http://tampermonkey.net/ | |
// @version 0.2 | |
// @description Hide GitHub's unread notification dot in the top bar | |
// @author cketti | |
// @match https://github.com/* | |
// @match https://gist.github.com/* | |
// @icon https://github.githubassets.com/favicons/favicon.svg | |
// @grant GM_addStyle | |
// ==/UserScript== | |
(function() { | |
'use strict'; | |
GM_addStyle('.notification-indicator .mail-status { display: none !important; }'); | |
})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment