Skip to content

Instantly share code, notes, and snippets.

@mattroyer
Last active October 11, 2015 12:48
Show Gist options
  • Save mattroyer/3861566 to your computer and use it in GitHub Desktop.
Save mattroyer/3861566 to your computer and use it in GitHub Desktop.
Create a button on GitHub profile page for user's Gist page
// This is the readable version of Gisty.js
//
(function() {
var url = document.URL.replace('github', 'gist.github');
$('.tabnav-right').append('<a class="minibutton" href="' + url + '">Gists</a>');
})();
javascript:(function(){var a=document.URL.replace('github','gist.github');$('.tabnav-right').append('<a class="minibutton" href="'+a+'">Gists</a>');})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment