Skip to content

Instantly share code, notes, and snippets.

@nightscape
Created March 19, 2019 09:14
Show Gist options
  • Select an option

  • Save nightscape/029f813b4afcf0a7f544176def523787 to your computer and use it in GitHub Desktop.

Select an option

Save nightscape/029f813b4afcf0a7f544176def523787 to your computer and use it in GitHub Desktop.
Removes Github notifications (to reduce distraction)
// ==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