Skip to content

Instantly share code, notes, and snippets.

@rejuvyesh
Last active August 29, 2015 14:10
Show Gist options
  • Save rejuvyesh/29ac84bc6942310c18d0 to your computer and use it in GitHub Desktop.
Save rejuvyesh/29ac84bc6942310c18d0 to your computer and use it in GitHub Desktop.
append 'github' to all github pages
// ==UserScript==
// @name Github in Page Title
// @description Put the string 'Github' in each github page
// @include https://github.com/*
// @version 0.1
// @grant none
// ==/UserScript==
(function() {
if (!document.title.contains('GitHub')) {
document.title = document.title + ' - ' + ' GitHub';
}
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment