Skip to content

Instantly share code, notes, and snippets.

@shadyvb
Last active August 29, 2015 13:56
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save shadyvb/8946598 to your computer and use it in GitHub Desktop.
Save shadyvb/8946598 to your computer and use it in GitHub Desktop.
Open GitHub notification links in new tab
// ==UserScript==
// @name Open GitHub notification links in new tab
// @namespace
// @version 0.1
// @description Open GitHub Notifications in new tabs
// @match https://github.com/*/notifications*
// @copyright 2014+, Shady Sharaf <shady@sharaf.me>
// ==/UserScript==
jQuery(function($){
$('.js-navigation-open').attr('target', '_blank');
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment