Skip to content

Instantly share code, notes, and snippets.

@cketti
Last active June 12, 2021 16:59
Show Gist options
  • Save cketti/75ced90e6ee6605effd9f749b01ce612 to your computer and use it in GitHub Desktop.
Save cketti/75ced90e6ee6605effd9f749b01ce612 to your computer and use it in GitHub Desktop.
No unread GitHub notifications
// ==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