Last active
August 29, 2015 14:05
-
-
Save dimhold/f6883fca4a0bd0355cb5 to your computer and use it in GitHub Desktop.
Add stars link to github head (UserScript)
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 github-stars | |
// @namespace https://github.com/ | |
// @description Add stars link to github head | |
// @include https://github.com/* | |
// @version 1.0.0 | |
// @grant none | |
// ==/UserScript== | |
$('.header-nav.left').append('<li class="header-nav-item">' + | |
'<a data-ga-click="Header, go to stars, text:stars" href="https://github.com/stars" class="header-nav-link">' + | |
'<span class="octicon octicon-star"></span>' + | |
'</a>' + | |
'</li>'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment