Last active
August 29, 2015 13:56
-
-
Save shadyvb/8946598 to your computer and use it in GitHub Desktop.
Open GitHub notification links in new tab
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 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 <[email protected]> | |
// ==/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